Files
vpx/scripts/aom_nightly_config.sh
Yi Luo 0186ebda84 Use cmake instead of configure
Change-Id: I07267eb6a7ac9b96325433a7d3ff6b1d68365df3
2018-01-10 12:28:30 -08:00

14 lines
295 B
Bash
Executable File

#!/bin/sh
#set -x
libsrc=aom
test_dir=~/Dev/nightly
echo "cmake ../$libsrc -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0"
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