diff options
author | Brad King <brad.king@kitware.com> | 2014-05-15 17:50:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-05-15 18:34:52 (GMT) |
commit | a339ea652952666182d2e63ddce088d023e2a5f5 (patch) | |
tree | 7988457438918b8c1de93a32683357836cbb187e /Help/prop_sf | |
parent | ae80cb9f28c8c278a6897f331f65a1be77058897 (diff) | |
download | CMake-a339ea652952666182d2e63ddce088d023e2a5f5.zip CMake-a339ea652952666182d2e63ddce088d023e2a5f5.tar.gz CMake-a339ea652952666182d2e63ddce088d023e2a5f5.tar.bz2 |
Xcode: Add source file property to control file type (#14854)
Add source file properties to control Xcode file type attributes:
XCODE_EXPLICIT_FILE_TYPE => explicitFileType
XCODE_LAST_KNOWN_FILE_TYPE => lastKnownFileType
Add a RunCMake.XcodeProject test to verify generated project content.
Diffstat (limited to 'Help/prop_sf')
-rw-r--r-- | Help/prop_sf/XCODE_EXPLICIT_FILE_TYPE.rst | 8 | ||||
-rw-r--r-- | Help/prop_sf/XCODE_LAST_KNOWN_FILE_TYPE.rst | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Help/prop_sf/XCODE_EXPLICIT_FILE_TYPE.rst b/Help/prop_sf/XCODE_EXPLICIT_FILE_TYPE.rst new file mode 100644 index 0000000..1b24701 --- /dev/null +++ b/Help/prop_sf/XCODE_EXPLICIT_FILE_TYPE.rst @@ -0,0 +1,8 @@ +XCODE_EXPLICIT_FILE_TYPE +------------------------ + +Set the Xcode ``explicitFileType`` attribute on its reference to a +source file. CMake computes a default based on file extension but +can be told explicitly with this property. + +See also :prop_sf:`XCODE_LAST_KNOWN_FILE_TYPE`. diff --git a/Help/prop_sf/XCODE_LAST_KNOWN_FILE_TYPE.rst b/Help/prop_sf/XCODE_LAST_KNOWN_FILE_TYPE.rst new file mode 100644 index 0000000..42e3757 --- /dev/null +++ b/Help/prop_sf/XCODE_LAST_KNOWN_FILE_TYPE.rst @@ -0,0 +1,9 @@ +XCODE_LAST_KNOWN_FILE_TYPE +-------------------------- + +Set the Xcode ``lastKnownFileType`` attribute on its reference to a +source file. CMake computes a default based on file extension but +can be told explicitly with this property. + +See also :prop_sf:`XCODE_EXPLICIT_FILE_TYPE`, which is preferred +over this property if set. |