9 lines
108 B
Bash
Executable File
9 lines
108 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
set -E
|
|
|
|
mkdir build
|
|
cmake -S . -B build -G Ninja -D CMAKE_BUILD_TYPE=Debug
|
|
ninja -C build
|