Skip to content

Commit 6353d7e

Browse files
committed
Use RelWithDebInfo instead of Debug to fix Windows compilation
1 parent 44d929a commit 6353d7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pixi.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ version = "0.1.0"
2525
[tasks]
2626
# Note: extra CLI argument after `pixi run TASK` are passed to the task cmd.
2727

28-
prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=Debug"
28+
prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
2929
clean = { cmd = "rm -rf build bin CMakeFiles/" }
30-
build = { cmd = "mkdir -p bin && cmake --build build --config Debug --target all", depends_on = [
30+
build = { cmd = "mkdir -p bin && cmake --build build --config RelWithDebInfo --target all", depends_on = [
3131
"prepare",
3232
] }
3333
run = { cmd = "build/rerun_ext_example", depends_on = ["build"] }

0 commit comments

Comments
 (0)