2022-11-13 21:04:43 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# I use this script on two different hosts so there are logic to find proper Qt installation
|
|
|
|
|
|
2023-04-21 11:42:27 +03:00
|
|
|
export QT_HOME=/home/$USER/tools/qt/5.15.2/gcc_64
|
2022-11-13 21:04:43 +03:00
|
|
|
if [ ! -d "$QT_HOME" ] ; then
|
2023-04-21 11:42:27 +03:00
|
|
|
export QT_HOME=/home/$USER/qt/5.15.2/gcc_64
|
2022-11-13 21:04:43 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Build .appimage
|
|
|
|
|
/usr/bin/python3 build_qbreak.py debug
|
|
|
|
|
|