From e48a9676d05a3d34d3106f002426b4c269be9dbe Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Fri, 5 Jan 2024 01:47:38 +0100 Subject: [PATCH] [cmake] set `BUILD_TESTING` to `OFF` (#718) This disables test builds when building samples. Signed-off-by: Piotr Dymacz --- script/build | 1 + 1 file changed, 1 insertion(+) diff --git a/script/build b/script/build index d4d4e1f2..1b9415e1 100755 --- a/script/build +++ b/script/build @@ -42,6 +42,7 @@ readonly OT_SRCDIR OT_OPTIONS=( "-DCMAKE_BUILD_TYPE=MinSizeRel" + "-DBUILD_TESTING=OFF" "-DOT_PLATFORM=external" "-DOT_SLAAC=ON" )