You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EasyPR/build.sh

12 lines
130 B

#!/usr/bin/env bash
BUILD_PATH="_build/"
if [ ! -e $BUILD_PATH ]; then
mkdir $BUILD_PATH
fi
cd _build/
cmake ../
make -j 4