mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 16:45:08 +00:00
20 lines
417 B
CMake
20 lines
417 B
CMake
serenity_component(
|
|
WebDriver
|
|
TARGETS WebDriver
|
|
DEPENDS WebContent
|
|
)
|
|
|
|
set(SOURCES
|
|
Client.cpp
|
|
Session.cpp
|
|
WebContentConnection.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
../../Services/WebContent/WebDriverClientEndpoint.h
|
|
../../Services/WebContent/WebDriverServerEndpoint.h
|
|
)
|
|
|
|
serenity_bin(WebDriver)
|
|
target_link_libraries(WebDriver PRIVATE LibCore LibHTTP LibMain LibIPC LibWeb LibGfx)
|