From c705b278d14088d86cec4843d93e336515d4569d Mon Sep 17 00:00:00 2001 From: trns1997 Date: Fri, 3 Oct 2025 15:05:41 +0200 Subject: [PATCH] cmake: Remove unused BUILD_OOTCPP guard from configuration. Clean up the CMake configuration by removing the obsolete `BUILD_OOTCPP` guard. This variable is no longer required since out-of-tree build handling is now managed via the enhanced `nuttx_add_subdirectory()` with EXCLUDE support. * Simplifies CMake configuration command. * Avoids redundant or unused build options. Signed-off-by: trns1997 --- tools/ci/cibuild-oot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/cibuild-oot.sh b/tools/ci/cibuild-oot.sh index a0a2d88104c..ff91040a6ef 100755 --- a/tools/ci/cibuild-oot.sh +++ b/tools/ci/cibuild-oot.sh @@ -63,7 +63,7 @@ echo "=== [4/5] Building OOT ===" rm -rf "$BUILD_DIR" mkdir -p "$BUILD_DIR" cd "$BUILD_DIR" -cmake .. -DCMAKE_TOOLCHAIN_FILE="$TOOLCHAIN_FILE" -DBUILD_OOTCPP=ON +cmake .. -DCMAKE_TOOLCHAIN_FILE="$TOOLCHAIN_FILE" make -j"$(nproc)" echo "=== [5/5] Verifying Output ==="