Browse Source

contrib: qt: use the proper qmake configuration for Linux

It needs to be defined when cross-compiling (to arm as we do for raspberrypi).
pull/141/head
Steve Lhomme 4 years ago
parent
commit
f3ccdc5bd8
  1. 8
      contrib/src/qt/rules.mak

8
contrib/src/qt/rules.mak

@ -75,6 +75,14 @@ ifdef HAVE_MACOSX
QT_SPEC := macx-clang
endif
ifdef HAVE_LINUX
ifdef HAVE_CLANG
QT_SPEC := linux-clang
else
QT_SPEC := linux-g++
endif
endif
ifdef HAVE_WIN32
ifdef HAVE_CLANG

Loading…
Cancel
Save