mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
17 lines
604 B
CMake
17 lines
604 B
CMake
set(SOURCES
|
|
Client.cpp
|
|
)
|
|
|
|
if (NOT SERENITYOS)
|
|
compile_ipc(../../../Services/ImageDecoder/ImageDecoderClient.ipc ../../../Services/ImageDecoder/ImageDecoderClientEndpoint.h)
|
|
compile_ipc(../../../Services/ImageDecoder/ImageDecoderServer.ipc ../../../Services/ImageDecoder/ImageDecoderServerEndpoint.h)
|
|
endif()
|
|
|
|
set(GENERATED_SOURCES
|
|
../../../Services/ImageDecoder/ImageDecoderClientEndpoint.h
|
|
../../../Services/ImageDecoder/ImageDecoderServerEndpoint.h
|
|
)
|
|
|
|
serenity_lib(LibImageDecoderClient imagedecoderclient)
|
|
target_link_libraries(LibImageDecoderClient PRIVATE LibCore LibIPC LibGfx)
|