diff options
author | Torsten Robitzki <Torsten@Robitzki.de> | 2019-02-04 19:39:25 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-02-07 17:59:10 (GMT) |
commit | 5228432b45b7ce740b93f2c80c8c7ce6987d4bf1 (patch) | |
tree | 3b2ea40e240af8f48008ac36448d275f27b3dbee /Help/release | |
parent | 8e746db6e11f9e017cd04552efaf40235d50363d (diff) | |
download | CMake-5228432b45b7ce740b93f2c80c8c7ce6987d4bf1.zip CMake-5228432b45b7ce740b93f2c80c8c7ce6987d4bf1.tar.gz CMake-5228432b45b7ce740b93f2c80c8c7ce6987d4bf1.tar.bz2 |
cmake_parse_arguments: add KEYWORDS_MISSING_VALUES
Add KEYWORDS_MISSING_VALUES output variable to cmake_parse_arguments() to
allow to detect keywords that received no values.
Fixes: #18706
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/cmake_parse_arguments-keywords_missing_values.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/release/dev/cmake_parse_arguments-keywords_missing_values.rst b/Help/release/dev/cmake_parse_arguments-keywords_missing_values.rst new file mode 100644 index 0000000..c7fe96b --- /dev/null +++ b/Help/release/dev/cmake_parse_arguments-keywords_missing_values.rst @@ -0,0 +1,6 @@ +cmake_parse_arguments-keywords_missing_values +--------------------------------------------- + +* The :command:`cmake_parse_arguments` command gained an additional + ``<prefix>_KEYWORDS_MISSING_VALUES`` output variable to report + keyword arguments that were given by the caller with no values. |