move model_converter from main e2d repo

This commit is contained in:
2019-02-21 15:07:16 +07:00
commit 3516ec4127
20 changed files with 699 additions and 0 deletions

8
scripts/build_debug.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/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
cd ../..