1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

Ladybird: Disable Qt autogeneration for ImageDecoder

This fixes the macOS Qt build.
This commit is contained in:
Andrew Kaster 2023-11-02 12:34:02 -06:00
parent f5771a5789
commit bc6f19da0e

View file

@ -1,5 +1,9 @@
set(IMAGE_DECODER_SOURCE_DIR ${SERENITY_SOURCE_DIR}/Userland/Services/ImageDecoder)
set(CMAKE_AUTOMOC OFF)
set(CMAKE_AUTORCC OFF)
set(CMAKE_AUTOUIC OFF)
set(IMAGE_DECODER_SOURCES
${IMAGE_DECODER_SOURCE_DIR}/ConnectionFromClient.cpp
)