13 lines
287 B
Bash
13 lines
287 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# I use this script on two different hosts so there are logic to find proper Qt installation
|
||
|
|
|
||
|
|
export QT_HOME=/home/$USER/qt/5.12.10/gcc_64
|
||
|
|
if [ ! -d "$QT_HOME" ] ; then
|
||
|
|
export QT_HOME=/home/$USER/qt5/5.12.12/gcc_64
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Build .appimage
|
||
|
|
/usr/bin/python3 build_outliner.py
|
||
|
|
|