mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05: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)
|