diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2022-08-22 14:10:56 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2022-09-03 21:10:01 (GMT) |
commit | 838a5fae23cba0c9acf922164ff89fb6883d0f96 (patch) | |
tree | 27cf344771ff7266aa70cbf4ab3ddcba1d653a19 /Help/policy | |
parent | 8f0e1f2111c046aaa240a54c211404747c911698 (diff) | |
download | CMake-838a5fae23cba0c9acf922164ff89fb6883d0f96.zip CMake-838a5fae23cba0c9acf922164ff89fb6883d0f96.tar.gz CMake-838a5fae23cba0c9acf922164ff89fb6883d0f96.tar.bz2 |
return(): Propagate variables to result scope
Fixes: #23871
Diffstat (limited to 'Help/policy')
-rw-r--r-- | Help/policy/CMP0140.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Help/policy/CMP0140.rst b/Help/policy/CMP0140.rst new file mode 100644 index 0000000..2e2d0c3 --- /dev/null +++ b/Help/policy/CMP0140.rst @@ -0,0 +1,17 @@ +CMP0140 +------- + +.. versionadded:: 3.25 + +The :command:`return` command checks its parameters. + +The ``OLD`` behavior for this policy is to ignore any parameters given to the +command. +The ``NEW`` behavior is to check validity of the parameters. + +This policy was introduced in CMake version 3.25. +CMake version |release| warns when the policy is not set and uses +``OLD`` behavior. Use the :command:`cmake_policy` command to set +it to ``OLD`` or ``NEW`` explicitly. + +.. include:: DEPRECATED.txt |