From 72e3eaddba2834dd2b9e11a8a5686d9fa23c3e08 Mon Sep 17 00:00:00 2001 From: Jaehyun Kim Date: Fri, 27 Feb 2026 09:50:16 +0900 Subject: [PATCH] test: Make BUILD_TESTS on-by-default Signed-off-by: Jaehyun Kim --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dd4bb7e0..8a413a97 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -651,7 +651,7 @@ add_custom_command( # Tests ################################################################ -option(BUILD_TESTS "Build unit tests" OFF) +option(BUILD_TESTS "Build unit tests" ON) if(BUILD_TESTS) enable_testing() find_package(GTest REQUIRED)