diff options
Diffstat (limited to 'Meta/Lagom')
-rw-r--r-- | Meta/Lagom/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index f22e0d63cd..6a81dc92d1 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -465,10 +465,6 @@ if (BUILD_LAGOM) add_serenity_subdirectory(Userland/Shell) - if (ENABLE_LAGOM_LADYBIRD) - add_serenity_subdirectory(Ladybird) - endif() - if (NOT ENABLE_FUZZERS AND NOT ENABLE_COMPILER_EXPLORER_BUILD AND NOT ANDROID) # Lagom Services add_serenity_subdirectory(Userland/Services) @@ -494,6 +490,10 @@ if (BUILD_LAGOM) target_link_libraries(headless-browser LibWeb LibWebSocket LibCrypto LibGemini LibHTTP LibJS LibGfx LibMain LibTLS LibIPC LibJS) endif() + if (ENABLE_LAGOM_LADYBIRD) + add_serenity_subdirectory(Ladybird) + endif() + add_executable(icc ../../Userland/Utilities/icc.cpp) target_link_libraries(icc LibCore LibGfx LibMain) |