From 2f4f7d6374eda81a4899e7bdca993329b2e1d859 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 23 Sep 2025 14:59:06 +0500 Subject: [PATCH] build-all.py - add OpenCOLLADA to IfcGeom dependencies Otherwise it can be overlooked if you build IfcOpenShell-Python or any other target specifically, it was only built if you run build-all.py without any target arguments. --- 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 2633eedb82..89d0048fd6 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -266,7 +266,7 @@ cecho( dependency_tree: "dict[str, tuple[str, ...]]" = { "IfcParse": ("boost", "libxml2", "hdf5", "rocksdb"), - "IfcGeom": ("IfcParse", "occ", "json", "cgal", "eigen"), + "IfcGeom": ("IfcParse", "occ", "json", "cgal", "eigen", "OpenCOLLADA"), "IfcConvert": ("IfcGeom",), "OpenCOLLADA": ("libxml2", "pcre"), "IfcGeomServer": ("IfcGeom",),