File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ prepare = "cmake -G 'Visual Studio 17 2022' -B build -S . -DCMAKE_BUILD_TYPE=Rel
27
27
build = { cmd = " cmake --build build --config RelWithDebInfo" , depends_on = [
28
28
" prepare" ,
29
29
] }
30
-
31
- run = { cmd = " cp .pixi/env/Library/bin/*.dll build/RelWithDebInfo/ && build/RelWithDebInfo/rerun_ext_example.exe" , depends_on = [" build" ] }
30
+ run = { cmd = " build/RelWithDebInfo/rerun_ext_example.exe" , depends_on = [" build" ] }
32
31
33
32
[target .linux-64 .tasks ]
34
33
prepare = " cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
@@ -56,6 +55,7 @@ run = { cmd = "build/rerun_ext_example", depends_on = ["build"] }
56
55
[tasks ]
57
56
# Note: extra CLI argument after `pixi run TASK` are passed to the task cmd.
58
57
clean = { cmd = " rm -rf build bin CMakeFiles/" }
58
+ print-env = { cmd = " echo $PATH" }
59
59
60
60
[dependencies ]
61
61
# Build tools:
You can’t perform that action at this time.
0 commit comments