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 44d929a commit 6353d7eCopy full SHA for 6353d7e
pixi.toml
@@ -25,9 +25,9 @@ version = "0.1.0"
25
[tasks]
26
# Note: extra CLI argument after `pixi run TASK` are passed to the task cmd.
27
28
-prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=Debug"
+prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
29
clean = { cmd = "rm -rf build bin CMakeFiles/" }
30
-build = { cmd = "mkdir -p bin && cmake --build build --config Debug --target all", depends_on = [
+build = { cmd = "mkdir -p bin && cmake --build build --config RelWithDebInfo --target all", depends_on = [
31
"prepare",
32
] }
33
run = { cmd = "build/rerun_ext_example", depends_on = ["build"] }
0 commit comments