summaryrefslogtreecommitdiff
path: root/Userland/Services/InspectorServer/CMakeLists.txt
blob: 4dad519d1ceffd2b15ae230ca01440e458281cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
serenity_component(
    InspectorServer
    REQUIRED
    TARGETS InspectorServer
)

compile_ipc(InspectorServer.ipc InspectorServerEndpoint.h)
compile_ipc(InspectorClient.ipc InspectorClientEndpoint.h)

set(SOURCES
    ConnectionFromClient.cpp
    main.cpp
    InspectableProcess.cpp
)

set(GENERATED_SOURCES
    InspectorServerEndpoint.h
    InspectorClientEndpoint.h
)

serenity_bin(InspectorServer)
target_link_libraries(InspectorServer LibIPC LibMain)