mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
e6474576e5
By default CMake dumps all the build artifact in the root directory of the project. The script now builds everything in `_Build`.
10 lines
116 B
Bash
Executable File
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
|