tahoma2d/ci-scripts/linux/travis-build.sh
manongjohn 4967add412
Tahoma Linux builds via Travis (#113)
* Tahoma Linux builds via Travis

* Update Linux Travis to install Qt 5.9

* Correct Tahoma appdata
2020-08-06 21:40:23 -06:00

12 lines
394 B
Bash
Executable file

#!/bin/bash
pushd thirdparty/tiff-4.0.3
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig && make
popd
cd toonz && mkdir build && cd build
source /opt/qt59/bin/qt59-env.sh
cmake ../sources \
-DWITH_SYSTEM_SUPERLU:BOOL=OFF
# according to https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
# travis can offer up to 2 cores in burst, try using that
make -j 2