blob: 2a2787f14546795f1211fc1ddc6f7c444859f40a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
serenity_component(
WebDriver
TARGETS WebDriver
DEPENDS WebContent
)
set(SOURCES
BrowserConnection.cpp
Client.cpp
Session.cpp
TimeoutsConfiguration.cpp
WebContentConnection.cpp
main.cpp
)
set(GENERATED_SOURCES
../../Applications/Browser/WebDriverSessionClientEndpoint.h
../../Applications/Browser/WebDriverSessionServerEndpoint.h
../../Services/WebContent/WebDriverClientEndpoint.h
../../Services/WebContent/WebDriverServerEndpoint.h
)
serenity_bin(WebDriver)
target_link_libraries(WebDriver PRIVATE LibCore LibHTTP LibMain LibIPC LibWeb LibGfx)
|