mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 22:15:07 +00:00

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/'
17 lines
404 B
CMake
17 lines
404 B
CMake
serenity_component(
|
|
ImageDecoder
|
|
TARGETS ImageDecoder
|
|
)
|
|
|
|
compile_ipc(ImageDecoderServer.ipc ImageDecoderServerEndpoint.h)
|
|
compile_ipc(ImageDecoderClient.ipc ImageDecoderClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
main.cpp
|
|
ImageDecoderServerEndpoint.h
|
|
ImageDecoderClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(ImageDecoder)
|
|
target_link_libraries(ImageDecoder LibGfx LibIPC LibMain)
|