build.sh 183 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9
#!/bin/bash

cd `dirname $0`
cd ../../../
set -e
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DWITH_GPU=OFF -DWITH_DOC=OFF -DWITH_TESTING=ON -DON_TRAVIS=ON
make -j `nproc`