tahoma2d/ci-scripts/linux/tahoma-build.sh

21 lines
290 B
Bash
Raw Normal View History

#!/bin/bash
2022-08-27 01:11:14 +12:00
pushd thirdparty/tiff-4.2.0
2022-08-27 16:52:57 +12:00
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig --disable-webp && 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