Skip to content

Commit 9be7849

Browse files
committed
remove dll copying. false alarm?
1 parent 18ae377 commit 9be7849

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
@@ -27,8 +27,7 @@ prepare = "cmake -G 'Visual Studio 17 2022' -B build -S . -DCMAKE_BUILD_TYPE=Rel
2727
build = { cmd = "cmake --build build --config RelWithDebInfo", depends_on = [
2828
"prepare",
2929
] }
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"] }
3231

3332
[target.linux-64.tasks]
3433
prepare = "cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
@@ -56,6 +55,7 @@ run = { cmd = "build/rerun_ext_example", depends_on = ["build"] }
5655
[tasks]
5756
# Note: extra CLI argument after `pixi run TASK` are passed to the task cmd.
5857
clean = { cmd = "rm -rf build bin CMakeFiles/" }
58+
print-env = { cmd = "echo $PATH" }
5959

6060
[dependencies]
6161
# Build tools:

0 commit comments

Comments
 (0)