From 02713dbd397ab152b63d268516d4710d5f3771be Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Fri, 3 Oct 2025 18:08:37 +0200 Subject: [PATCH] nix build script add occt 7.9.1 patch --- nix/build-all.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index d7b7a36e72..e30e3322fa 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -348,7 +348,6 @@ if any(f.startswith("occt-") for f in flags): OCCT_VERSION = next(f.split('-', 1)[1] for f in flags if f.startswith("occt-")) print(OCCT_VERSION) -exit() if explicit_targets: targets = {dep for target in explicit_targets for dep in gather_dependencies(target)} @@ -889,6 +888,9 @@ if USE_OCCT and "occ" in targets: if OCCT_VERSION == "7.8.1": patches.append("./patches/occt/no_ExpToCasExe_7_8_1.patch") + if OCCT_VERSION == "7.9.1": + patches.append("./patches/occt/no_ExpToCasExe_7_9_1.patch") + if "wasm" in flags: patches.append("./patches/occt/no_em_js.patch")