d28073d9eb
The former applies both on Mac OS X and iOS, but 'macx' is specific to Mac OS X. ios.conf and macx.conf now share most of their settings in the common mac.conf. We set the default QMAKE_MAC_SDK before loading mac.conf, so that any overrides in the device config will apply afterwards. This means configure's mkspec parsing will be able to read the QMAKE_MAC_SDK. Change-Id: I0c7e26a6a0103e19b23ef152aa9e4ab461cee632 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
14 lines
342 B
Plaintext
14 lines
342 B
Plaintext
CONFIG += testcase
|
|
|
|
QT += qml qmltest
|
|
|
|
mac: CONFIG -= app_bundle
|
|
|
|
# If the .pro file specified an IMPORTPATH, then add that to
|
|
# the command-line when the test is run.
|
|
!isEmpty(IMPORTPATH) {
|
|
load(testcase)
|
|
for(import, IMPORTPATH): check.commands += -import \"$$import\"
|
|
}
|
|
DEFINES += QUICK_TEST_SOURCE_DIR=\"\\\"$$_PRO_FILE_PWD_\\\"\"
|