Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 03:17:51 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 03:17:51 +0300
commit2f967b7ea49eb1a36a05dd4c007bd2edcc77d0b9 (patch)
tree384ee467238d77b4dd064145ac0f2ed9b7d7a60e /qmake/compiler.pri
parent91f16f17f19a44b5444143e305561a54500bf742 (diff)
qmake: remove Qt 4 logic
Diffstat (limited to 'qmake/compiler.pri')
-rw-r--r--qmake/compiler.pri32
1 files changed, 7 insertions, 25 deletions
diff --git a/qmake/compiler.pri b/qmake/compiler.pri
index 1dc60840e..47a8ea07f 100644
--- a/qmake/compiler.pri
+++ b/qmake/compiler.pri
@@ -23,18 +23,13 @@ QMAKE_RESOURCE_FLAGS += -compress 9
# architecture of the compiler via the
# force-x86_64-toolchain and force-x86-toolchain
# CONFIG options. Because we have these, qmake's
-# QMAKE_TARGET.arch doesn't suffice any longer, and
+# QT_ARCH doesn't suffice any longer, and
# we define MUMBLE_ARCH to be used in its place.
-MUMBLE_ARCH = $$QMAKE_TARGET.arch
-# When using Qt 5, use QT_ARCH instead of QMAKE_TARGET.
-# It also works for cross-builds.
-isEqual(QT_MAJOR_VERSION, 5) {
- MUMBLE_ARCH = $$QT_ARCH
- # QT_ARCH uses 'i386' instead of 'x86',
- # so map that value back to what we expect.
- equals(MUMBLE_ARCH, i386) {
- MUMBLE_ARCH=x86
- }
+MUMBLE_ARCH = $$QT_ARCH
+# QT_ARCH uses 'i386' instead of 'x86',
+# so map that value back to what we expect.
+equals(MUMBLE_ARCH, i386) {
+ MUMBLE_ARCH=x86
}
win32-g++ {
@@ -344,20 +339,7 @@ macx {
!CONFIG(universal) {
CONFIG += no-pch
- # Qt 5.1 and greater want short-form OS X SDKs.
- isEqual(QT_MAJOR_VERSION, 5) {
- QMAKE_MAC_SDK = macosx
- } else {
- QMAKE_MAC_SDK = $$system(xcrun --sdk macosx --show-sdk-path 2>/dev/null)
- isEmpty(QMAKE_MAC_SDK) {
- QMAKE_MAC_SDK = $$system(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk
- !exists($$QMAKE_MAC_SDK) {
- message("Unable to find usable OS X SDK")
- error("Aborting build")
- }
- }
- }
-
+ QMAKE_MAC_SDK = macosx
QMAKE_CC = $$system(xcrun -find clang)
QMAKE_CXX = $$system(xcrun -find clang++)
QMAKE_LINK = $$system(xcrun -find clang++)