tahoma2d/ci-scripts/linux/tahoma-build.sh
2022-08-26 09:11:14 -04:00

20 lines
275 B
Bash
Executable file

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