7 lines
130 B
Bash
Executable File
7 lines
130 B
Bash
Executable File
#!/usr/bin/env sh
|
|
if [ ! -d build ]
|
|
then
|
|
mkdir build
|
|
fi
|
|
|
|
cmake -S . -B build -G "${1:-Ninja}" -DCMAKE_BUILD_TYPE="${2:-Debug}" |