Update Travis QT Version to 5.12.3 (#2608)

* Update Travis QT Version to 5.12.3

* Autodetect QT version for Travis macOS builds
This commit is contained in:
manongjohn 2019-05-07 03:25:34 -04:00 committed by shun-iwasawa
parent a0f8f76edc
commit f9ae046904

View file

@ -3,8 +3,10 @@ pushd thirdparty/tiff-4.0.3
./configure && make
popd
cd toonz && mkdir build && cd build
QTVERSION=`ls /usr/local/Cellar/qt`
echo "QT Version detected: $QTVERSION"
cmake ../sources \
-DQT_PATH=/usr/local/Cellar/qt/5.12.2/lib/ \
-DQT_PATH=/usr/local/Cellar/qt/$QTVERSION/lib/ \
-DTIFF_INCLUDE_DIR=../../thirdparty/tiff-4.0.3/libtiff/ \
-DSUPERLU_INCLUDE_DIR=../../thirdparty/superlu/SuperLU_4.1/include/
make -j 2