7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CMAKE_BUILD_DIR=cmake-build
|
|
|
|
cmake -S . -B $CMAKE_BUILD_DIR -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
cmake --build $CMAKE_BUILD_DIR
|