diff options
author | Matt McCormick <matt.mccormick@kitware.com> | 2014-12-30 01:47:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-08-03 13:22:25 (GMT) |
commit | 14e49ed15615e7f2bcb58aa4540683250006f5c7 (patch) | |
tree | fad463f1cb96d9da2ee65bee42e8e6a251aec971 /Help/policy | |
parent | 623dcc85a447b9ce0f09cffa8cd296cd8a51ad9d (diff) | |
download | CMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.zip CMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.tar.gz CMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.tar.bz2 |
if: Add "TEST <test>" condition
if(TEST TestNameThatExists) will return true if a test with the name
TestNameThatExists has been added with add_test. The syntax is similar
to if(TARGET TargetName). Since use of "TEST" as an argument to if()
could previously be interpreted as a non-keyword argument, add policy
CMP0064 to treat it as a keyword as NEW behavior.
Diffstat (limited to 'Help/policy')
-rw-r--r-- | Help/policy/CMP0064.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Help/policy/CMP0064.rst b/Help/policy/CMP0064.rst new file mode 100644 index 0000000..e9a061b --- /dev/null +++ b/Help/policy/CMP0064.rst @@ -0,0 +1,17 @@ +CMP0064 +------- + +Recognize ``TEST`` as a operator for the :command:`if` command. + +The ``TEST`` operator was added to the :command:`if` command to determine if a +given test name was created by the :command:`add_test` command. + +The ``OLD`` behavior for this policy is to ignore the ``TEST`` operator. +The ``NEW`` behavior is to interpret the ``TEST`` operator. + +This policy was introduced in CMake version 3.4. 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 |