CMakeLists.txt 672 B

12345678910111213141516171819202122
  1. set(SOURCES
  2. AccessibilityTreeModel.cpp
  3. DOMTreeModel.cpp
  4. OutOfProcessWebView.cpp
  5. RequestServerAdapter.cpp
  6. StylePropertiesModel.cpp
  7. ViewImplementation.cpp
  8. WebContentClient.cpp
  9. WebSocketClientAdapter.cpp
  10. )
  11. set(GENERATED_SOURCES
  12. ../../Services/RequestServer/RequestClientEndpoint.h
  13. ../../Services/RequestServer/RequestServerEndpoint.h
  14. ../../Services/WebContent/WebContentClientEndpoint.h
  15. ../../Services/WebContent/WebContentServerEndpoint.h
  16. )
  17. serenity_lib(LibWebView webview)
  18. target_link_libraries(LibWebView PRIVATE LibCore LibFileSystemAccessClient LibGfx LibGUI LibIPC LibProtocol LibWeb)
  19. add_subdirectory(DumpLayoutTree)