mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
3a71748e5d
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
20 lines
431 B
CMake
20 lines
431 B
CMake
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
|
|
InspectorServerEndpoint.h
|
|
InspectorClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(InspectorServer)
|
|
target_link_libraries(InspectorServer LibIPC LibMain)
|