Import project files

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas 2021-02-03 12:49:34 +01:00
commit 994eab59f5
9 changed files with 404 additions and 0 deletions

15
build.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
BUILD_DIR=build
main () {
local cur_dir=$PWD
mkdir -p $BUILD_DIR
cd $BUILD_DIR
cmake ..
make
cd $cur_dir
}
main $@