ladybird/Userland/Services/InspectorServer/CMakeLists.txt
Andreas Kling 3d3a5b431f Services: Add InspectorServer to reverse the direction of Inspector
This service daemon will act as an intermediary between the Inspector
program and the inspectable programs it wants to inspect.

Programs can make themselves available for inspection by connecting
to /tmp/portal/inspectables using the Core::EventLoop RPC protocol.
2021-05-13 23:28:40 +02:00

14 lines
335 B
CMake

compile_ipc(InspectorServer.ipc InspectorServerEndpoint.h)
compile_ipc(InspectorClient.ipc InspectorClientEndpoint.h)
set(SOURCES
ClientConnection.cpp
main.cpp
InspectableProcess.cpp
InspectorServerEndpoint.h
InspectorClientEndpoint.h
)
serenity_bin(InspectorServer)
target_link_libraries(InspectorServer LibIPC)