initial commit

This commit is contained in:
2019-06-22 05:53:08 +07:00
commit e529b2e10c
17 changed files with 288 additions and 0 deletions

9
scripts/build_release.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
mkdir -p $BUILD_DIR/release
cd $BUILD_DIR/release
cmake -DCMAKE_BUILD_TYPE=Release ../..
cmake --build . -- -j8
ctest --verbose
cd ../..