mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
8659a6d3a7
This library offers tools to communicate with an ImageDecoder server through IPC. There is currently no such executable for Lagom but that shouldn't take long :^)
16 lines
586 B
CMake
16 lines
586 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)
|