Skip to content

Commit fc2a7e1

Browse files
Removed make in build scripts. Now use Ninja instead
1 parent 9589645 commit fc2a7e1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/cppbuild.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ os_detect() {
3535

3636
cp "$cfg_path" "$build_dir"
3737
cd "$build_dir" || exit 1
38-
cmake ..
39-
make
38+
39+
cmake -G "Ninja" ..
40+
ninja
4041
./"$program_name"
4142

4243
echo "Build SUCCESS | With exit status code: $exit_code"

0 commit comments

Comments
 (0)