7
7
# https://prefix.dev/docs/pixi/overview
8
8
#
9
9
# Use `pixi task list` to list the available tasks,
10
- # and `pixi run TASK` to run it (e.g. `pixi run run `).
10
+ # and `pixi run TASK` to run it (e.g. `pixi run example `).
11
11
12
12
[project ]
13
13
name = " rerun_cpp_example_opencv_eigen"
@@ -32,7 +32,7 @@ prepare = "cmake -G 'Visual Studio 17 2022' -B build -S . -DCMAKE_BUILD_TYPE=Rel
32
32
build = { cmd = " cmake --build build --config RelWithDebInfo" , depends_on = [
33
33
" prepare" ,
34
34
] }
35
- run = { cmd = " build/RelWithDebInfo/rerun_ext_example.exe" , depends_on = [
35
+ example = { cmd = " build/RelWithDebInfo/rerun_ext_example.exe" , depends_on = [
36
36
" build" ,
37
37
] }
38
38
@@ -41,22 +41,22 @@ prepare = "cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
41
41
build = { cmd = " cmake --build build --config RelWithDebInfo --target all" , depends_on = [
42
42
" prepare" ,
43
43
] }
44
- run = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
44
+ example = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
45
45
46
46
47
47
[target .osx-64 .tasks ]
48
48
prepare = " cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
49
49
build = { cmd = " cmake --build build --config RelWithDebInfo --target all" , depends_on = [
50
50
" prepare" ,
51
51
] }
52
- run = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
52
+ example = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
53
53
54
54
[target .osx-arm64 .tasks ]
55
55
prepare = " cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo"
56
56
build = { cmd = " cmake --build build --config RelWithDebInfo --target all" , depends_on = [
57
57
" prepare" ,
58
58
] }
59
- run = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
59
+ example = { cmd = " build/rerun_ext_example" , depends_on = [" build" ] }
60
60
61
61
[dependencies ]
62
62
# Build tools:
0 commit comments