summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/CMakeLists.txt
blob: e4643e70c4e96c1af587efac5cecd7a68fd72a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
serenity_component(
    WebContent
    TARGETS WebContent
    DEPENDS ImageDecoder RequestServer WebSocket
)

compile_ipc(WebContentServer.ipc WebContentServerEndpoint.h)
compile_ipc(WebContentClient.ipc WebContentClientEndpoint.h)

set(SOURCES
    ConnectionFromClient.cpp
    ConsoleGlobalObject.cpp
    ImageCodecPluginSerenity.cpp
    PageHost.cpp
    WebContentClientEndpoint.h
    WebContentConsoleClient.cpp
    WebContentServerEndpoint.h
    main.cpp
)

serenity_bin(WebContent)
target_link_libraries(WebContent LibCore LibIPC LibGfx LibImageDecoderClient LibWebView LibWeb LibMain)
link_with_locale_data(WebContent)