From b2a90920e1fbf0294a0a58fa1c42627ee05fbdf0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 3 Sep 2026 10:21:43 +0500 Subject: [PATCH] cmake: build svgfill without `BUILD_IFCPYTHON` Otherwise it will never be able to reach standalone ifcwrap build as in this case ifcopenshell is built first as a dependency without `BUILD_IFCPYTHON`. --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2e92840528..256a6e53d7 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -733,7 +733,7 @@ if(BUILD_IFCMAX) add_subdirectory(../src/ifcmax ifcmax) endif() -if(BUILD_IFCPYTHON AND WITH_CGAL) +if(WITH_CGAL) add_subdirectory(../src/svgfill svgfill) endif()