summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebView/CMakeLists.txt
blob: d0da3aef1e230c3bc1a91344e923765916fdf23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set(SOURCES
    DOMTreeModel.cpp
    ImageDecoderClientAdapter.cpp
    OutOfProcessWebView.cpp
    StylePropertiesModel.cpp
    WebContentClient.cpp
)

set(GENERATED_SOURCES
    ../../Services/RequestServer/RequestClientEndpoint.h
    ../../Services/RequestServer/RequestServerEndpoint.h
    ../../Services/WebContent/WebContentClientEndpoint.h
    ../../Services/WebContent/WebContentServerEndpoint.h
)

serenity_lib(LibWebView webview)
target_link_libraries(LibWebView LibGfx LibGUI LibImageDecoderClient LibIPC LibWeb)

add_subdirectory(DumpLayoutTree)