Skip to content

Commit 0977050

Browse files
authored
Merge pull request #6 from traversaro/fixwin
Fix after test on Windows
2 parents 44d929a + 63bf6c6 commit 0977050

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.16)
1+
cmake_minimum_required(VERSION 3.16...3.27)
22

33
project(rerun_external_cpp_proj LANGUAGES CXX)
44

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)