This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new c705b278d14 cmake: Remove unused BUILD_OOTCPP guard from configuration.
c705b278d14 is described below
commit c705b278d14088d86cec4843d93e336515d4569d
Author: trns1997 <[email protected]>
AuthorDate: Fri Oct 3 15:05:41 2025 +0200
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 <[email protected]>
---
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 ==="