1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:07:46 +00:00

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.
This commit is contained in:
Timothy Flynn 2022-09-12 15:35:54 -04:00 committed by Andreas Kling
parent 2cc947ede4
commit 10727ade4c
2 changed files with 30 additions and 25 deletions

View file

@ -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")