mirror of
https://github.com/openharmony/third_party_libsnd.git
synced 2026-07-18 16:54:31 -04: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
|