From d6a9459be144d63a89ae1ae4f56f1e70d0318e18 Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Sat, 28 Sep 2024 13:30:19 -0400 Subject: [PATCH] Whoops - need to translate the active value not the cached value. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e086e2cd..3b00b0f16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,9 +32,9 @@ set(MANIFOLD_VERSION "${MANIFOLD_VERSION_MAJOR}.${MANIFOLD_VERSION_MINOR}.${MANI # work this way) if (DEFINED MANIFOLD_PAR) if ("${MANIFOLD_PAR}" STREQUAL "" OR "${MANIFOLD_PAR}" STREQUAL "NONE") - set(MANIFOLD_PAR OFF CACHE BOOL "Normalized MANIFOLD_PAR setting") + set(MANIFOLD_PAR OFF) else() - set(MANIFOLD_PAR ON CACHE BOOL "Normalized MANIFOLD_PAR setting") + set(MANIFOLD_PAR ON) endif () endif ()