08f6af608a
A scheme is required to be able to run tests through Xcode, even from the command line, but Xcode doesn't auto-generate the schemes until launched as an application. Xcode also auto-generates schemes for all our targets, but we only need one for the primary application target. Change-Id: Ia42f3825aba3ffde3be93be55e165d6284434853 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com> Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
18 lines
317 B
Plaintext
18 lines
317 B
Plaintext
#
|
|
# qmake configuration for macx-xcode
|
|
#
|
|
# OS X + Xcode
|
|
#
|
|
|
|
QMAKESPEC = $$dirname(PWD)/$$[QMAKE_XSPEC]
|
|
|
|
QMAKE_XCODE_SPECDIR = $$PWD
|
|
|
|
include($$QMAKESPEC/qmake.conf)
|
|
|
|
MAKEFILE_GENERATOR = XCODE
|
|
|
|
# The active spec is now the original spec, but we still want
|
|
# Xcode specific blocks to be triggered.
|
|
CONFIG += macx-xcode
|