File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,10 @@ def main() -> None:
121
121
build_type = "Debug"
122
122
if args .release :
123
123
build_type = "Release"
124
+ # TODO(andreas): We should pixi for the prepare so we can ensure we have build tooling ready
124
125
configure_args = [
125
126
"cmake" ,
126
127
"-G" ,
127
- "Ninja" ,
128
- "-B" ,
129
128
cpp_build_dir ,
130
129
f"-DCMAKE_BUILD_TYPE={ build_type } " ,
131
130
"-DCMAKE_COMPILE_WARNING_AS_ERROR=ON" ,
Original file line number Diff line number Diff line change @@ -86,10 +86,9 @@ def main() -> None:
86
86
build_type = "Debug"
87
87
if args .release :
88
88
build_type = "Release"
89
+ # TODO(andreas): We should pixi for the prepare so we can ensure we have build tooling ready
89
90
configure_args = [
90
91
"cmake" ,
91
- "-G" ,
92
- "Ninja" ,
93
92
"-B" ,
94
93
cpp_build_dir ,
95
94
f"-DCMAKE_BUILD_TYPE={ build_type } " ,
You can’t perform that action at this time.
0 commit comments