diff options
author | Brad King <brad.king@kitware.com> | 2015-01-11 16:50:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-11 16:50:14 (GMT) |
commit | ca5fe169aa4873af5b1ba4c6b2ecb35b84364974 (patch) | |
tree | 2357a0d8995117ebc7bfa2b545a51f2d79e2fbe8 /Help | |
parent | ac16b88e5062c0c5d7bd020fdd139a2953d427c9 (diff) | |
parent | c6d03a1072c8f3ae285f4297caf96637b3a47c22 (diff) | |
download | CMake-ca5fe169aa4873af5b1ba4c6b2ecb35b84364974.zip CMake-ca5fe169aa4873af5b1ba4c6b2ecb35b84364974.tar.gz CMake-ca5fe169aa4873af5b1ba4c6b2ecb35b84364974.tar.bz2 |
Merge branch 'fix-empty-target-property-queries' into release
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/get_test_property.rst | 8 | ||||
-rw-r--r-- | Help/command/set_tests_properties.rst | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Help/command/get_test_property.rst b/Help/command/get_test_property.rst index 2623755..391a32e 100644 --- a/Help/command/get_test_property.rst +++ b/Help/command/get_test_property.rst @@ -7,9 +7,9 @@ Get a property of the test. get_test_property(test property VAR) -Get a property from the Test. The value of the property is stored in -the variable VAR. If the property is not found, VAR will be set to -"NOTFOUND". For a list of standard properties you can type cmake ---help-property-list +Get a property from the test. The value of the property is stored in +the variable VAR. If the test or property is not found, VAR will be +set to "NOTFOUND". For a list of standard properties you can type cmake +--help-property-list. See also the more general get_property() command. diff --git a/Help/command/set_tests_properties.rst b/Help/command/set_tests_properties.rst index e29d690..afac847 100644 --- a/Help/command/set_tests_properties.rst +++ b/Help/command/set_tests_properties.rst @@ -7,7 +7,7 @@ Set a property of the tests. set_tests_properties(test1 [test2...] PROPERTIES prop1 value1 prop2 value2) -Set a property for the tests. If the property is not found, CMake +Set a property for the tests. If the test is not found, CMake will report an error. Generator expressions will be expanded the same as supported by the test's add_test call. The properties include: |