File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,9 @@ def which(cmd):
276276def gather_dependencies (dep : str ) -> "Generator[str]" :
277277 yield dep
278278 for d in dependency_tree [dep ]:
279- for x in gather_dependencies (d ):
280- yield x
279+ if f"without-{ d .lower ()} " not in flags :
280+ for x in gather_dependencies (d ):
281+ yield x
281282
282283
283284if "v" in flags :
Original file line number Diff line number Diff line change 77
88build :
99 script : |
10- BUILD_CFG=Release python nix/build-all.py --without-hdf5 --without-opencollada --without-swig --without-pcre -v --wasm --py313 IfcOpenShell-Python
10+ BUILD_CFG=Release python nix/build-all.py --without-rocksdb --without- hdf5 --without-opencollada --without-swig --without-pcre -v --wasm --py313 IfcOpenShell-Python
1111 mv package/ifcopenshell .
1212 cp pyodide/setup.py .
1313
You can’t perform that action at this time.
0 commit comments