2023-05-20 11:59:07 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# I use this script on two different hosts so there are logic to find proper Qt installation
|
|
|
|
|
|
2025-04-26 21:49:28 +03:00
|
|
|
export QT_HOME=/home/$USER/tools/qt/6.8.0/gcc_64
|
2023-05-20 11:59:07 +03:00
|
|
|
if [ ! -d "$QT_HOME" ] ; then
|
2025-04-26 21:49:28 +03:00
|
|
|
export QT_HOME=/home/$USER/tools/qt/6.8.0/gcc_64
|
2023-05-20 11:59:07 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Build .appimage
|
|
|
|
|
/usr/bin/python3 build_qbreak.py release
|
|
|
|
|
|