vpx/scripts/aom_nightly_config.sh
Yi Luo d1310f37fc Use ~/bin/cmake, version 3.8
Change-Id: I5805d6f1f4aa34faf34282244f49741ed5306e49
2018-01-24 10:29:53 -08:00

14 lines
309 B
Bash
Executable File

#!/bin/sh
#set -x
libsrc=aom
test_dir=~/Dev/nightly
echo "cmake ../$libsrc -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0"
~/bin/cmake ../$libsrc -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0 > /dev/null 2>&1
# if [ $? -ne 0 ]; then
# echo "Error: cmake configure fails!" > $test_dir/aom_error_config.txt
# exit 1
# fi