1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 09:17:36 +00:00

CMake: Add public cmake option to document BUILD_LAGOM

- Making this an option makes this option visible to users and tooling.
This commit is contained in:
Brian Gianforcaro 2021-01-01 02:44:04 -08:00 committed by Andreas Kling
parent 40f671ac67
commit 43908db594
2 changed files with 3 additions and 2 deletions

View file

@ -66,7 +66,7 @@ jobs:
run: |
mkdir -p Build
cd Build
cmake .. -GNinja -DBUILD_LAGOM=1 -DENABLE_ALL_THE_DEBUG_MACROS=ON
cmake .. -GNinja -DBUILD_LAGOM=ON -DENABLE_ALL_THE_DEBUG_MACROS=ON
# === ACTUALLY BUILD AND TEST ===
@ -173,7 +173,7 @@ jobs:
run: |
mkdir -p Build
cd Build
cmake .. -GNinja -DBUILD_LAGOM=1 -DENABLE_ALL_THE_DEBUG_MACROS=ON -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10
cmake .. -GNinja -DBUILD_LAGOM=ON -DENABLE_ALL_THE_DEBUG_MACROS=ON -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10
# === ACTUALLY BUILD AND TEST ===