Use Qt minimal static

This commit is contained in:
Ximi1970
2020-06-01 17:47:49 +02:00
parent aae11de160
commit 6f7501e4e1

View File

@@ -4,14 +4,21 @@ ifeq (Cygwin,$(shell uname -o))
else
ifeq (GNU/Linux,$(shell uname -o))
SYSTEM = Linux
QMAKE = qmake-qt5
ifeq (, $(shell which qmake-qt5 2>/dev/null))
ifeq (, $(shell which qmake 2>/dev/null))
$(error "No qmake in $(PATH)")
endif
QMAKE = qmake
endif
#QMAKE = ../rootfs/usr/Qt-opensource-5.14.2/bin/qmake
#QMAKE = ../rootfs/usr/Qt-opensource-5.14.2-static/bin/qmake
QMAKE = /usr/Qt-opensource-5.14.2-static/bin/qmake
#QMAKE = qmake-qt5
# ifeq (, $(shell which qmake-qt5 2>/dev/null))
# ifeq (, $(shell which qmake 2>/dev/null))
# $(error "No qmake in $(PATH)")
# endif
# QMAKE = qmake
# endif
else
$(error "Unknown system")
endif