aboutsummaryrefslogtreecommitdiff
path: root/src/build.sh
blob: e987bc10179c549e3f63fc5c164dc60ad3becef8 (plain)
1
2
3
4
5
6
7
#!/bin/bash

# creates the build dir and runs CMake with Ninja 
cmake -B build -G Ninja

# build the project
cmake --build build