mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
18 lines
619 B
Plaintext
18 lines
619 B
Plaintext
|
|
||
|
xcodebuild {
|
||
|
# Xcode project files always support both Debug and Release configurations
|
||
|
# and device and simulator targets, so we make sure the wrapper-makefile
|
||
|
# also does.
|
||
|
CONFIG += debug_and_release simulator_and_device
|
||
|
}
|
||
|
|
||
|
load(resolve_config)
|
||
|
|
||
|
!macx-xcode:xcodebuild {
|
||
|
# Switch the order to make sure that the first Makefile target is the right one
|
||
|
!qtConfig(simulator_and_device):contains(QMAKE_MAC_SDK, ^$${simulator.sdk}.*): \
|
||
|
addExclusiveBuildsProper(simulator_and_device, simulator device)
|
||
|
else: \
|
||
|
addExclusiveBuildsProper(simulator_and_device, device simulator)
|
||
|
}
|