initial commit

This commit is contained in:
2019-05-04 08:32:11 +07:00
commit f894776576
20 changed files with 14827 additions and 0 deletions

9
scripts/build_debug.sh Executable file
View File

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