This is my qmake version:
$ qmake -v
QMake version 3.0
Using Qt version 5.3.2 in /usr/lib/x86_64-linux-gnu
I had to edit linuxdeploy.sh:
1. Add "-makefile" to the QMAKE_ARGS variable:
$ qmake -h
Usage: /usr/lib/x86_64-linux-gnu/qt5/bin/qmake [mode] [options] [files]
where mode is either "-makefile" (default) or "-project"
QMAKE_ARGS="-makefile -r -spec linux-clang"
$ qmake -v
QMake version 3.0
Using Qt version 5.3.2 in /usr/lib/x86_64-linux-gnu
I had to edit linuxdeploy.sh:
1. Add "-makefile" to the QMAKE_ARGS variable:
$ qmake -h
Usage: /usr/lib/x86_64-linux-gnu/qt5/bin/qmake [mode] [options] [files]
where mode is either "-makefile" (default) or "-project"
QMAKE_ARGS="-makefile -r -spec linux-clang"
2. Right before "Running qmake...", I added another line to include pgmodeler.pro in the qmake invocation:
QMAKE_ARGS="$QMAKE_ARGS pgmodeler.pro"
Then I ran ./linuxdeploy.sh -no-qt-libs (https://github.com/pgmodeler/pgmodeler/issues/674)
Comments
Post a Comment