Skip to content

Commit 6fd87e3

Browse files
committed
Set -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
1 parent 02feb56 commit 6fd87e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pixi.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ install-local = { cmd = "cmake --install build --prefix $CONDA_PREFIX", depends_
4747
"build",
4848
] }
4949

50-
configure = { cmd = "cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON" }
50+
configure = { cmd = "cmake -G Ninja -S . -B build -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DDART_VERBOSE=ON -DDART_USE_SYSTEM_IMGUI=ON" }
5151

5252
lint = { cmd = "cmake --build build --target format && black . && isort .", depends_on = [
5353
"configure",
@@ -149,7 +149,7 @@ imgui = ">=1.90.4,<1.91"
149149
freeglut = ">=3.2.2,<3.3"
150150

151151
[target.win-64.tasks]
152-
configure = { cmd = "cmake -S . -B build -G 'Visual Studio 17 2022' -DDART_VERBOSE=ON -DDART_MSVC_DEFAULT_OPTIONS=ON -DBUILD_SHARED_LIBS=OFF -DDART_USE_SYSTEM_IMGUI=OFF" }
152+
configure = { cmd = "cmake -S . -B build -G 'Visual Studio 17 2022' -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DDART_VERBOSE=ON -DDART_MSVC_DEFAULT_OPTIONS=ON -DBUILD_SHARED_LIBS=OFF -DDART_USE_SYSTEM_IMGUI=OFF" }
153153
lint = { cmd = "black . && isort .", depends_on = ["configure"] }
154154
check-lint = { cmd = "black . --check && isort . --check", depends_on = [
155155
"configure",

0 commit comments

Comments
 (0)