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

22 lines
367 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
2022-08-14 08:13:21 +12:00
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
cmake ../sources \
2022-08-14 08:13:21 +12:00
-DWITH_GPHOTO2:BOOL=ON \
2022-11-27 09:32:18 +13:00
-DWITH_SYSTEM_SUPERLU=ON
make -j7