From 8f4b61319f7a6a184e78baadd5b56720fe192c00 Mon Sep 17 00:00:00 2001 From: Orange Date: Wed, 19 Mar 2025 20:13:06 +0300 Subject: [PATCH] disabled tests by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c435075..c50a945 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ option(OMATH_THREAT_WARNING_AS_ERROR "Set highest level of warnings and force co option(OMATH_BUILD_AS_SHARED_LIBRARY "Build Omath as .so or .dll" OFF) option(OMATH_USE_AVX2 "Omath will use AVX2 to boost performance" ON) option(OMATH_IMGUI_INTEGRATION "Omath will define method to convert omath types to imgui types" OFF) -option(OMATH_BUILD_EXAMPLES "Build example projects with you can learn & play" ON) +option(OMATH_BUILD_EXAMPLES "Build example projects with you can learn & play" OFF) if (OMATH_BUILD_AS_SHARED_LIBRARY) add_library(omath SHARED source/Matrix.cpp)