We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23df52 commit 7e2b368Copy full SHA for 7e2b368
crates/pixi-build-cmake/src/build_script.j2
@@ -3,7 +3,7 @@ cmake --version
3
4
{# Windows #}
5
{% if build_platform == "windows" -%}
6
-if not exist %SRC_DIR%\..\build\CMakeCache.txt (
+if not exist %SRC_DIR%\..\build\build.ninja (
7
cmake %CMAKE_ARGS% ^
8
-GNinja ^
9
-DCMAKE_BUILD_TYPE=Release ^
@@ -20,7 +20,7 @@ cmake --build %SRC_DIR%\..\build --target install
20
21
{# Non Windows #}
22
{% else -%}
23
-if [ ! -f "$SRC_DIR/../build/CMakeCache.txt" ]; then
+if [ ! -f "$SRC_DIR/../build/build.ninja" ]; then
24
cmake $CMAKE_ARGS \
25
-GNinja \
26
-DCMAKE_BUILD_TYPE=Release \
0 commit comments