tahoma2d/ci-scripts/linux/tahoma-build.sh
manongjohn 0decaa114e
Build script corrections (#308)
* Correct macOS build script issues/add building static ffmpeg for deployments

* Correct linux build script issues/add building static ffmpeg for deployments
2020-10-06 19:10:58 -06:00

20 lines
273 B
Bash
Executable file

#!/bin/bash
pushd thirdparty/tiff-4.0.3
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig && make
popd
cd toonz
if [ ! -d build ]
then
mkdir build
fi
cd build
source /opt/qt59/bin/qt59-env.sh
cmake ../sources \
-DWITH_SYSTEM_SUPERLU:BOOL=OFF
make -j7