diff options
author | Andrew Kaster <akaster@serenityos.org> | 2023-02-02 03:57:06 -0700 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-02-02 05:35:44 -0700 |
commit | 8f70e365f0a4d8b90c1b6b83af060846221f3c93 (patch) | |
tree | 9ee5e234bc07fed2c611c5a5ea70c8187b2e0e88 /Meta/Lagom | |
parent | ae9dc95b1f04d68f9b998163a0e89fd3582ff60d (diff) | |
download | serenity-8f70e365f0a4d8b90c1b6b83af060846221f3c93.zip |
Meta+CI: Disable Ladybird for fuzzer, compiler explorer and Android
And move it after the declaration of headless-browser, since WebDriver
depends on headless-browser.
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) |