CMakeLists.txt 437 B

12345678910111213141516
  1. set(SOURCES
  2. Request.cpp
  3. RequestClient.cpp
  4. WebSocket.cpp
  5. WebSocketClient.cpp
  6. )
  7. set(GENERATED_SOURCES
  8. ../../Services/RequestServer/RequestClientEndpoint.h
  9. ../../Services/RequestServer/RequestServerEndpoint.h
  10. ../../Services/WebSocket/WebSocketClientEndpoint.h
  11. ../../Services/WebSocket/WebSocketServerEndpoint.h
  12. )
  13. serenity_lib(LibProtocol protocol)
  14. target_link_libraries(LibProtocol PRIVATE LibCore LibIPC)