blob: 9677a1c15ba62eb84ac229b8148cd93fe494be1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
serenity_component(
ImageDecoder
TARGETS ImageDecoder
)
compile_ipc(ImageDecoderServer.ipc ImageDecoderServerEndpoint.h)
compile_ipc(ImageDecoderClient.ipc ImageDecoderClientEndpoint.h)
set(SOURCES
ClientConnection.cpp
main.cpp
ImageDecoderServerEndpoint.h
ImageDecoderClientEndpoint.h
)
serenity_bin(ImageDecoder)
target_link_libraries(ImageDecoder LibGfx LibIPC)
|