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