Remove QtConcurrent from list of Qt modules

Summary:
QtConcurrent isn't used any longer in swift code, so we can remove it
from the list of enabled modules. Disabling it causes the QtConcurrent
header path to be removed from the include paths and we no longer
unnecessarily link against it.

Reviewers: msutcliffe

Reviewed By: msutcliffe

Subscribers: jenkins

Differential Revision: https://dev.swift-project.org/D25
This commit is contained in:
Roland Winklmeier
2017-06-07 13:58:17 +02:00
parent 5d1b5dba38
commit 79556260bd
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
load(common_pre) load(common_pre)
QT += core dbus gui network concurrent xml QT += core dbus gui network xml
TARGET = simulatorfs9 TARGET = simulatorfs9
TEMPLATE = lib TEMPLATE = lib

View File

@@ -1,6 +1,6 @@
load(common_pre) load(common_pre)
QT += core dbus concurrent xml network QT += core dbus xml network
TARGET = simulatorfscommon TARGET = simulatorfscommon
TEMPLATE = lib TEMPLATE = lib

View File

@@ -2,7 +2,7 @@ load(common_pre)
REQUIRES += contains(BLACK_CONFIG,FSX) REQUIRES += contains(BLACK_CONFIG,FSX)
QT += core dbus gui network concurrent xml QT += core dbus gui network xml
TARGET = simulatorfsx TARGET = simulatorfsx
TEMPLATE = lib TEMPLATE = lib

View File

@@ -1,6 +1,6 @@
load(common_pre) load(common_pre)
QT += core dbus concurrent xml network widgets QT += core dbus xml network widgets
TARGET = simulatorfsxcommon TARGET = simulatorfsxcommon
TEMPLATE = lib TEMPLATE = lib

View File

@@ -2,7 +2,7 @@ load(common_pre)
REQUIRES += contains(BLACK_CONFIG,P3D) REQUIRES += contains(BLACK_CONFIG,P3D)
QT += core dbus gui network concurrent xml QT += core dbus gui network xml
TARGET = simulatorp3d TARGET = simulatorp3d
TEMPLATE = lib TEMPLATE = lib