initial commit

This commit is contained in:
BlackMATov
2020-06-04 23:15:00 +07:00
commit e986d49ed6
23 changed files with 667 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
pushd $BUILD_DIR/Release
cmake -DCMAKE_BUILD_TYPE=Release ../..
cmake --build .
ctest --verbose
popd