camenduru's picture
thanks to openpose ❤
f5bb0c0
raw
history blame contribute delete
230 Bytes
#!/bin/bash
# build the project
BASEDIR=$(dirname $0)
source $BASEDIR/defaults.sh
if ! $WITH_CMAKE ; then
make --jobs $NUM_THREADS all test pycaffe warn
else
cd build
make --jobs $NUM_THREADS all test.testbin
fi
make lint