Skip to content

Commit

Permalink
Merge pull request #6 from traversaro/fixwin
Browse files Browse the repository at this point in the history
Fix after test on Windows
  • Loading branch information
emilk authored Oct 27, 2023
2 parents 44d929a + 63bf6c6 commit 0977050
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.16...3.27)

project(rerun_external_cpp_proj LANGUAGES CXX)

Expand Down
4 changes: 2 additions & 2 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ version = "0.1.0"
[tasks]
# Note: extra CLI argument after `pixi run TASK` are passed to the task cmd.

prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=Debug"
prepare = "cmake -G Ninja -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
clean = { cmd = "rm -rf build bin CMakeFiles/" }
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 = [
"prepare",
] }
run = { cmd = "build/rerun_ext_example", depends_on = ["build"] }
Expand Down

0 comments on commit 0977050

Please sign in to comment.