mirror of
https://gitlab.com/parallel-launcher/parallel-launcher
synced 2025-10-05 16:12:45 +02:00
11 lines
261 B
Bash
Executable File
11 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
QMAKE_OPTS="app.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug"
|
|
if [ -n "$(which qmake-qt5)" ]; then
|
|
qmake-qt5 $QMAKE_OPTS
|
|
elif [ -n "$(which qtchooser)" ]; then
|
|
qmake -qt=qt5 $QMAKE_OPTS
|
|
else
|
|
qmake $QMAKE_OPTS
|
|
fi
|
|
lupdate app.pro -no-obsolete
|