1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-31 06:02:44 +00:00
serenity/Userland/Services/WebContent/CMakeLists.txt
2021-01-12 12:23:01 +01:00

13 lines
343 B
CMake

compile_ipc(WebContentServer.ipc WebContentServerEndpoint.h)
compile_ipc(WebContentClient.ipc WebContentClientEndpoint.h)
set(SOURCES
ClientConnection.cpp
main.cpp
PageHost.cpp
WebContentServerEndpoint.h
WebContentClientEndpoint.h
)
serenity_bin(WebContent)
target_link_libraries(WebContent LibCore LibIPC LibGfx LibWeb)