diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-09-12 15:35:54 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-09-13 17:05:20 +0200 |
commit | 10727ade4cd594825671bda74aab7d65d6394b04 (patch) | |
tree | f3977e89b09df3b939cabfbfaa685e96f189536b /Meta/CMake | |
parent | 2cc947ede46824e8c57821769b7276856a459e83 (diff) | |
download | serenity-10727ade4cd594825671bda74aab7d65d6394b04.zip |
Meta: Add Lagom option to disable building LibWeb
Compiling LibWeb for Lagom can add quite a bit of compile time. Add a
CMake option to disable it locally.
Diffstat (limited to 'Meta/CMake')
-rw-r--r-- | Meta/CMake/lagom_options.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/CMake/lagom_options.cmake b/Meta/CMake/lagom_options.cmake index 5d252c4b16..fa0efbd4a1 100644 --- a/Meta/CMake/lagom_options.cmake +++ b/Meta/CMake/lagom_options.cmake @@ -11,3 +11,4 @@ serenity_option(ENABLE_FUZZERS_LIBFUZZER OFF CACHE BOOL "Build fuzzers using Cla serenity_option(ENABLE_FUZZERS_OSSFUZZ OFF CACHE BOOL "Build OSS-Fuzz compatible fuzzers") serenity_option(BUILD_LAGOM OFF CACHE BOOL "Build parts of the system targeting the host OS for fuzzing/testing") serenity_option(ENABLE_LAGOM_CCACHE ON CACHE BOOL "Enable ccache for Lagom builds") +serenity_option(ENABLE_LAGOM_LIBWEB ON CACHE BOOL "Enable compiling LibWeb for Lagom builds") |