summaryrefslogtreecommitdiff
path: root/Userland/Services/ImageDecoder/CMakeLists.txt
blob: ac26ae37c6a7f7da72a98fe702e7816a2e570e0b (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
    ConnectionFromClient.cpp
    main.cpp
    ImageDecoderServerEndpoint.h
    ImageDecoderClientEndpoint.h
)

serenity_bin(ImageDecoder)
target_link_libraries(ImageDecoder LibGfx LibIPC LibMain)