From 0724fac69847608cd90c63bb6784bc3f6b13fb35 Mon Sep 17 00:00:00 2001 From: Esteban DUGUEPEROUX Date: Fri, 28 Nov 2025 18:50:46 +0100 Subject: [PATCH] cmake: Enable svgfill only for Python wrapper --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2344e52df8..179c8e135b 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -736,7 +736,7 @@ if(BUILD_IFCMAX) add_subdirectory(../src/ifcmax ifcmax) endif() -if(WITH_CGAL) +if(BUILD_IFCPYTHON AND WITH_CGAL) add_subdirectory(../src/svgfill svgfill) endif()