summaryrefslogtreecommitdiff
path: root/share/qbs/modules/cpp/macos-gcc.qbs
Commit message (Collapse)AuthorAgeFilesLines
* Remove the base module import from shared imports and modulesJoerg Bornemann2018-06-221-1/+0
| | | | | Change-Id: I5270e033dc41b5bd76a417099514c69cc073008b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Use Module.priority to choose the right cpp module instanceJoerg Bornemann2017-09-271-0/+1
| | | | | | | | | Replace the negating conditions in our cpp instances with module priorities. This removes the need of knowing about all other more specialized instances in more general instances. Change-Id: I511ba11f2cb69ea1458b786a2db4309de8910ebf Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Fix tests with older versions of Apple ClangJake Petroules2017-06-211-0/+5
| | | | | | | Amends and fixes a regression introduced in 4551d11. Change-Id: I8014c8bfb82c389d4ae741f868be45e420e327ca Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Don't set minimum deployment targets for iOS and macOS when using libc++Jake Petroules2017-06-141-1/+0
| | | | | | | | This causes linker errors with the latest versions of Xcode because the versions set are too old. Change-Id: If125667ae3b0c410d59f51b1fb86f77ef50e6e79 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Fix default value of cpp.minimum{Macos,Ios}VersionChristian Kandeler2017-05-091-0/+1
| | | | | | | | Usage of libc++ implies a deployment target >= 10.7 and 5.0, respectively. Change-Id: I8c839ad055b2f07cae1523acbca390c824b2a90e Reviewed-by: Jake Petroules <jake.petroules@qt.io>
* Merge 1.5 into 1.6Jake Petroules2016-06-281-2/+1
| | | | Change-Id: If1a2c368170d89d5e6e11b08a32b37901d51eb1d
* Do the OS X to macOS rename.v1.5.2Jake Petroules2016-06-271-0/+44
[ChangeLog] The "osx" value in qbs.hostOS and qbs.targetOS has been replaced with "macos". For backwards compatibility, qbs.hostOS will still contain "osx" in addition to "macos", and an error will be printed if qbs.targetOS contains "osx" but not "macos". Specifying "macos" without "osx" is allowed. These checks are subject to be removed in a future version of qbs, so update your hostOS and targetOS checks accordingly. [ChangeLog] cpp.minimumOsxVersion has been deprecated and replaced with cpp.minimumMacosVersion. cpp.minimumOsxVersion is subject to be removed in a future version of qbs, so update your projects accordingly. Change-Id: I479891829dff6eb6750cb2a04e1395f085896f63 Reviewed-by: Jake Petroules <jake.petroules@qt.io>