diff options
author | Craig Scott <craig.scott@crascit.com> | 2018-02-11 10:04:26 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2018-02-11 10:04:26 (GMT) |
commit | a71ab3be0e668731885740a11d29d378069d9677 (patch) | |
tree | 77eaa43588aedac136026cc56a61ddbaa9971b37 /Help/manual/cmake-generator-expressions.7.rst | |
parent | e24cda008e3ea1cbb22d17d29c5c39999facb4b7 (diff) | |
download | CMake-a71ab3be0e668731885740a11d29d378069d9677.zip CMake-a71ab3be0e668731885740a11d29d378069d9677.tar.gz CMake-a71ab3be0e668731885740a11d29d378069d9677.tar.bz2 |
Help: Expand string(MAKE_C_IDENTIFIER) docs
The MAKE_C_IDENTIFIER subcommand was also buried in the docs for the
TIMESTAMP subcommand, so it has been pulled out to its own subheading.
Diffstat (limited to 'Help/manual/cmake-generator-expressions.7.rst')
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index 0f6d4cf..13948d3 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -289,7 +289,8 @@ Available output expressions are: ``$<UPPER_CASE:...>`` Content of ``...`` converted to upper case. ``$<MAKE_C_IDENTIFIER:...>`` - Content of ``...`` converted to a C identifier. + Content of ``...`` converted to a C identifier. The conversion follows the + same behavior as :command:`string(MAKE_C_IDENTIFIER)`. ``$<TARGET_OBJECTS:objLib>`` List of objects resulting from build of ``objLib``. ``objLib`` must be an object of type ``OBJECT_LIBRARY``. |