diff options
author | Brad King <brad.king@kitware.com> | 2018-02-15 13:49:21 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-02-15 13:49:44 (GMT) |
commit | b5d18cbd7777cba22f844b0b3672db20ab21c836 (patch) | |
tree | 889756209ca11e72436b92131d1dd6e679640ec4 /Help | |
parent | cab9838b4c015d57476b579275adcad4e724354f (diff) | |
parent | b513a879ec0dc23df1d4557d17b3b2fed3b94f7b (diff) | |
download | CMake-b5d18cbd7777cba22f844b0b3672db20ab21c836.zip CMake-b5d18cbd7777cba22f844b0b3672db20ab21c836.tar.gz CMake-b5d18cbd7777cba22f844b0b3672db20ab21c836.tar.bz2 |
Merge topic 'directory-property-TESTS'
b513a879 Tests management: add TESTS directory property
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1748
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-properties.7.rst | 1 | ||||
-rw-r--r-- | Help/prop_dir/TESTS.rst | 7 | ||||
-rw-r--r-- | Help/release/dev/directory-property-TESTS.rst | 5 |
3 files changed, 13 insertions, 0 deletions
diff --git a/Help/manual/cmake-properties.7.rst b/Help/manual/cmake-properties.7.rst index 00a932f..d3e58d0 100644 --- a/Help/manual/cmake-properties.7.rst +++ b/Help/manual/cmake-properties.7.rst @@ -84,6 +84,7 @@ Properties on Directories /prop_dir/RULE_LAUNCH_LINK /prop_dir/SOURCE_DIR /prop_dir/SUBDIRECTORIES + /prop_dir/TESTS /prop_dir/TEST_INCLUDE_FILES /prop_dir/VARIABLES /prop_dir/VS_GLOBAL_SECTION_POST_section diff --git a/Help/prop_dir/TESTS.rst b/Help/prop_dir/TESTS.rst new file mode 100644 index 0000000..c6e1d88 --- /dev/null +++ b/Help/prop_dir/TESTS.rst @@ -0,0 +1,7 @@ +TESTS +----- + +List of tests. + +This read-only property holds a :ref:`;-list <CMake Language Lists>` of tests +defined so far by the :command:`add_test` command. diff --git a/Help/release/dev/directory-property-TESTS.rst b/Help/release/dev/directory-property-TESTS.rst new file mode 100644 index 0000000..9de2531 --- /dev/null +++ b/Help/release/dev/directory-property-TESTS.rst @@ -0,0 +1,5 @@ +directory-property-TESTS +------------------------ + +* The :prop_dir:`TESTS` directory property was added to hold the list of tests defined by + command :command:`add_test`. |