@@ -48,31 +48,31 @@ py-test = { cmd = "python -m pytest -vv rerun_py/tests/unit", depends_on = [
48
48
] }
49
49
50
50
# All the cpp-* tasks can be configured with environment variables, e.g.: RERUN_WERROR=ON CXX=clang++
51
- cpp-prepare-release = " cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=Release"
52
- cpp-prepare = " cmake -G 'Ninja' -B build -S . -DCMAKE_BUILD_TYPE=Debug"
53
- cpp-build-all = { cmd = " cmake --build build --config Debug --target all" , depends_on = [
51
+ cpp-prepare-release = " cmake -G 'Ninja' -B build/release -S . -DCMAKE_BUILD_TYPE=Release"
52
+ cpp-prepare = " cmake -G 'Ninja' -B build/debug -S . -DCMAKE_BUILD_TYPE=Debug"
53
+ cpp-build-all = { cmd = " cmake --build build/debug --config Debug --target all" , depends_on = [
54
54
" cpp-prepare" ,
55
55
] }
56
56
cpp-clean = " rm -rf build CMakeCache.txt CMakeFiles"
57
- cpp-build-tests = { cmd = " cmake --build build --config Debug --target rerun_sdk_tests" , depends_on = [
57
+ cpp-build-tests = { cmd = " cmake --build build/debug --config Debug --target rerun_sdk_tests" , depends_on = [
58
58
" cpp-prepare" ,
59
59
] }
60
- cpp-build-roundtrips = { cmd = " cmake --build build --config Debug --target roundtrips" , depends_on = [
60
+ cpp-build-roundtrips = { cmd = " cmake --build build/debug --config Debug --target roundtrips" , depends_on = [
61
61
" cpp-prepare" ,
62
62
] }
63
- cpp-build-examples = { cmd = " cmake --build build --config Debug --target examples" , depends_on = [
63
+ cpp-build-examples = { cmd = " cmake --build build/debug --config Debug --target examples" , depends_on = [
64
64
" cpp-prepare" ,
65
65
] }
66
- cpp-build-doc-examples = { cmd = " cmake --build build --config Debug --target doc_examples" , depends_on = [
66
+ cpp-build-doc-examples = { cmd = " cmake --build build/debug --config Debug --target doc_examples" , depends_on = [
67
67
" cpp-prepare" ,
68
68
] }
69
- cpp-build-log-benchmark = { cmd = " cmake --build build --config Release --target log_benchmark" , depends_on = [
69
+ cpp-build-log-benchmark = { cmd = " cmake --build build/release --config Release --target log_benchmark" , depends_on = [
70
70
" cpp-prepare-release" ,
71
71
] }
72
- cpp-test = { cmd = " export RERUN_STRICT=1 && ./build/rerun_cpp/tests/rerun_sdk_tests" , depends_on = [
72
+ cpp-test = { cmd = " export RERUN_STRICT=1 && ./build/debug/ rerun_cpp/tests/rerun_sdk_tests" , depends_on = [
73
73
" cpp-build-tests" ,
74
74
] }
75
- cpp-log-benchmark = { cmd = " export RERUN_STRICT=1 && ./build/tests/cpp/log_benchmark/log_benchmark" , depends_on = [
75
+ cpp-log-benchmark = { cmd = " export RERUN_STRICT=1 && ./build/release/ tests/cpp/log_benchmark/log_benchmark" , depends_on = [
76
76
" cpp-build-log-benchmark" ,
77
77
] }
78
78
cpp-build-and-test-all = { depends_on = [" cpp-build-all" , " cpp-test" ] }
0 commit comments