diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-20 20:40:29 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-27 18:06:12 (GMT) |
commit | 1242f4e56924ddfb7f954d820918c89c333e1dc5 (patch) | |
tree | b4f7d0437efd24e0508e9f998a082ff576c3c03c /Help | |
parent | 754b3212720d0846b1b5847fae888bc79bb8cfc3 (diff) | |
download | CMake-1242f4e56924ddfb7f954d820918c89c333e1dc5.zip CMake-1242f4e56924ddfb7f954d820918c89c333e1dc5.tar.gz CMake-1242f4e56924ddfb7f954d820918c89c333e1dc5.tar.bz2 |
Genex: Add {UPPER,LOWER}_CASE and MAKE_C_IDENTIFIER.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index bd9e7c2..ed28abd 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -178,3 +178,9 @@ property is non-empty:: Content of ``...`` when the property is exported using :command:`export`, or when the target is used by another target in the same buildsystem. Expands to the empty string otherwise. +``$<LOWER_CASE:...>`` + Content of ``...`` converted to lower case. +``$<UPPER_CASE:...>`` + Content of ``...`` converted to upper case. +``$<MAKE_C_IDENTIFIER:...>`` + Content of ``...`` converted to a C identifier. |