tahoma2d/ci-scripts/osx/travis-build.sh
manongjohn f9ae046904 Update Travis QT Version to 5.12.3 (#2608)
* Update Travis QT Version to 5.12.3

* Autodetect QT version for Travis macOS builds
2019-05-07 16:25:34 +09:00

12 lines
398 B
Bash

#!/bin/bash
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/$QTVERSION/lib/ \
-DTIFF_INCLUDE_DIR=../../thirdparty/tiff-4.0.3/libtiff/ \
-DSUPERLU_INCLUDE_DIR=../../thirdparty/superlu/SuperLU_4.1/include/
make -j 2