openAV-Luppp/build/compile.sh

21 lines
303 B
Bash
Raw Normal View History

2013-09-18 11:48:04 +01:00
#!/bin/bash
# A simple script to invoke cmake with the correct parameters to build the
# release version of Luppp
function err_handle {
notify-send -t 0 -u critical "Luppp: Release build FAILED!"
}
trap 'err_handle' ERR
set -e
2013-11-15 20:04:39 +00:00
cd ../
./version.sh
cd build
2013-09-18 11:48:04 +01:00
cmake -DRELEASE_BUILD=1 ../
make -j 2