From 0609fa2335b0a4a3277875a986618c226a3edbe1 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Mon, 16 Dec 2024 16:28:38 -0800 Subject: [PATCH] pixi: Add run freecad configuration for Windows. Windows requires running from an installed FreeCAD, not simply the build environment. This commit performs the install and execution from the installation environment. --- pixi.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pixi.toml b/pixi.toml index 331b69c734fd..f2c17fa8fc4f 100644 --- a/pixi.toml +++ b/pixi.toml @@ -142,6 +142,7 @@ configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-r configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]} +freecad = { cmd = [ ".pixi/envs/default/Library/bin/FreeCAD.exe" ], depends-on = ["install"]} ## Tasks [tasks]