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

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

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

serenity_bin(WebContent)
target_link_libraries(WebContent LibCore LibIPC LibGfx LibWeb LibMain)
link_with_unicode_data(WebContent)