mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +00:00
21 lines
417 B
CMake
21 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)
|