diff options
author | Kai Wolf <mail@kai-wolf.me> | 2018-02-04 07:41:03 (GMT) |
---|---|---|
committer | Kai Wolf <mail@kai-wolf.me> | 2018-02-04 07:41:03 (GMT) |
commit | b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479 (patch) | |
tree | 0ec6af68668d0829a8bd7f54aaa2a46e74ce6a27 /Help/command | |
parent | b4a06e2cf7129155ed9260fd71eac5a2557c297f (diff) | |
download | CMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.zip CMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.tar.gz CMake-b95eda9b11ff2ba8baccf6208bb43c4c3cfa3479.tar.bz2 |
Help: Fix code example in cmake_parse_arguments.rst
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/cmake_parse_arguments.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/cmake_parse_arguments.rst b/Help/command/cmake_parse_arguments.rst index b334a89..efbef54 100644 --- a/Help/command/cmake_parse_arguments.rst +++ b/Help/command/cmake_parse_arguments.rst @@ -62,7 +62,7 @@ as the real :command:`install` command: .. code-block:: cmake - function(MY_INSTALL) + macro(my_install) set(options OPTIONAL FAST) set(oneValueArgs DESTINATION RENAME) set(multiValueArgs TARGETS CONFIGURATIONS) |