third_party_libsnd/Scripts/cmake-build.sh
Erik de Castro Lopo e6474576e5 Scripts/cmake-build.sh: Build out of tree
By default CMake dumps all the build artifact in the root directory
of the project. The script now builds everything in `_Build`.
2017-04-09 15:41:40 +10:00

10 lines
116 B
Bash
Executable File

#!/bin/bash -eu
rm -rf CMakeCache.txt CMakeFiles/ _Build
mkdir _Build
cd _Build
cmake ..
cmake --build .
ctest -V