From e5d0adf24765e399c5dadfbaab763317f84735f3 Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 17 Mar 2025 04:11:49 +0300 Subject: [PATCH] changed default option --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c94fc3..b2bf452 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ option(OMATH_BUILD_TESTS "Build unit tests" OFF) option(OMATH_THREAT_WARNING_AS_ERROR "Set highest level of warnings and force compiler to treat them as errors" ON) 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" ON) +option(OMATH_IMGUI_INTEGRATION "Omath will define method to convert omath types to imgui types" OFF) if (OMATH_BUILD_AS_SHARED_LIBRARY) add_library(omath SHARED source/Vector3.cpp)