Everywhere: Hoist the Services folder to the top-level

This commit is contained in:
Timothy Flynn
2024-11-09 12:13:18 -05:00
committed by Andreas Kling
parent a7dc40eff3
commit 22e0eeada2
68 changed files with 41 additions and 41 deletions

View File

@@ -3,13 +3,13 @@ set(SOURCES
)
if (NOT SERENITYOS)
compile_ipc(../../Services/ImageDecoder/ImageDecoderClient.ipc ../../Services/ImageDecoder/ImageDecoderClientEndpoint.h)
compile_ipc(../../Services/ImageDecoder/ImageDecoderServer.ipc ../../Services/ImageDecoder/ImageDecoderServerEndpoint.h)
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
../../../Services/ImageDecoder/ImageDecoderClientEndpoint.h
../../../Services/ImageDecoder/ImageDecoderServerEndpoint.h
)
serenity_lib(LibImageDecoderClient imagedecoderclient)