From abd667684d9c1c0319a57469af92801e9ccbc99e Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 10 Nov 2025 10:48:24 +0100 Subject: [PATCH] Supply CGAL_WITH_GMPXX to ifcopenshell configure #7330 --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index 188fa7557c..0cf0010e7e 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -1237,7 +1237,6 @@ if "cgal" in targets: f"-DMPFR_INCLUDE_DIR={DEPS_DIR}/install/mpfr-{MPFR_VERSION}/include", f"-DBoost_INCLUDE_DIR={DEPS_DIR}/install/boost-{BOOST_VERSION}", f"-DCMAKE_INSTALL_PREFIX={DEPS_DIR}/install/cgal-{CGAL_VERSION}/", - f"-DCGAL_WITH_GMPXX=Off", f"-DCGAL_HEADER_ONLY=On", f"-DBUILD_SHARED_LIBS=Off", ], @@ -1379,6 +1378,7 @@ if "cgal" in targets: cmake_args_prefix_path.append(f"{DEPS_DIR}/install/cgal-{CGAL_VERSION}") cmake_args_prefix_path.append(f"{DEPS_DIR}/install/gmp-{GMP_VERSION}") cmake_args_prefix_path.append(f"{DEPS_DIR}/install/mpfr-{MPFR_VERSION}") + cmake_args.append(f"-DCGAL_WITH_GMPXX=Off") if "occ" in targets and USE_OCCT: cmake_args_prefix_path.append(f"{DEPS_DIR}/install/occt-{OCCT_VERSION}")