2022-05-28 20:50:40 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# I use this script on two different hosts so there are logic to find proper Qt installation
|
|
|
|
|
|
2025-04-09 19:10:19 +03:00
|
|
|
export QT_HOME=/home/$USER/tools/qt/6.8.0/gcc_64
|
2022-05-28 20:50:40 +03:00
|
|
|
if [ ! -d "$QT_HOME" ] ; then
|
2025-04-09 19:10:19 +03:00
|
|
|
export QT_HOME=/home/$USER/tools/qt/6.8.0/gcc_64
|
2022-05-28 20:50:40 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Build .appimage
|
|
|
|
|
/usr/bin/python3 build_outliner.py
|
|
|
|
|
|