Merge topic 'xcode-message-extension'

9ac0c393 Help: Add notes for topic 'xcode-message-extension'
0ae46321 Xcode: Add target property to override explicitFileType
7ecac703 Xcode: Add target property to override productType
This commit is contained in:
Brad King
2016-12-12 14:21:23 -05:00
committed by CMake Topic Stage
5 changed files with 33 additions and 0 deletions
+2
View File
@@ -294,6 +294,8 @@ Properties on Targets
/prop_tgt/WIN32_EXECUTABLE
/prop_tgt/WINDOWS_EXPORT_ALL_SYMBOLS
/prop_tgt/XCODE_ATTRIBUTE_an-attribute
/prop_tgt/XCODE_EXPLICIT_FILE_TYPE
/prop_tgt/XCODE_PRODUCT_TYPE
/prop_tgt/XCTEST
.. _`Test Properties`:
@@ -0,0 +1,8 @@
XCODE_EXPLICIT_FILE_TYPE
------------------------
Set the Xcode ``explicitFileType`` attribute on its reference to a
target. CMake computes a default based on target type but
can be told explicitly with this property.
See also :prop_tgt:`XCODE_PRODUCT_TYPE`.
+8
View File
@@ -0,0 +1,8 @@
XCODE_PRODUCT_TYPE
------------------
Set the Xcode ``productType`` attribute on its reference to a
target. CMake computes a default based on target type but
can be told explicitly with this property.
See also :prop_tgt:`XCODE_EXPLICIT_FILE_TYPE`.
@@ -0,0 +1,7 @@
xcode-message-extension
-----------------------
* New :prop_tgt:`XCODE_PRODUCT_TYPE` and :prop_tgt:`XCODE_EXPLICIT_FILE_TYPE`
target properties were created to tell the :generator:`Xcode` generator
to use custom values of the corresponding attributes for a target in the
generated Xcode project.