2022-05-07 21:59:47 +03:00
|
|
|
#!/bin/bash
|
2022-04-17 15:37:04 +03:00
|
|
|
|
2022-05-07 21:59:47 +03:00
|
|
|
# I use this script on two different hosts so there are logic to find proper Qt installation
|
|
|
|
|
|
2022-09-20 11:19:03 +03:00
|
|
|
export QT_HOME=/home/$USER/qt5.15/5.15.2/gcc_64
|
2022-05-07 21:59:47 +03:00
|
|
|
if [ ! -d "$QT_HOME" ] ; then
|
2022-09-20 11:19:03 +03:00
|
|
|
export QT_HOME=/home/$USER/qt5.15/5.15.2/gcc_64
|
2022-05-07 21:59:47 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Build .appimage
|
2022-04-17 15:37:04 +03:00
|
|
|
/usr/bin/python3 build_qbreak.py
|
|
|
|
|
|