6 lines
79 B
Bash
6 lines
79 B
Bash
|
if [ ! -d build ]
|
||
|
then
|
||
|
mkdir build
|
||
|
fi
|
||
|
|
||
|
cmake -S . -B build -G "${1:-Ninja}"
|