mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05: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/'
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)
|