mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-11 10:16:41 +00:00
This allows the ImageDecoder service to handle new IPC requests while decoding in parallel.
21 lines
458 B
CMake
21 lines
458 B
CMake
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 PRIVATE LibCore LibGfx LibIPC LibMain LibThreading)
|