• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set_tests_properties
2--------------------
3
4Set a property of the tests.
5
6.. code-block:: cmake
7
8  set_tests_properties(test1 [test2...] PROPERTIES prop1 value1 prop2 value2)
9
10Sets a property for the tests.  If the test is not found, CMake
11will report an error.
12:manual:`Generator expressions <cmake-generator-expressions(7)>` will be
13expanded the same as supported by the test's :command:`add_test` call.
14
15See also the :command:`set_property(TEST)` command.
16
17See :ref:`Test Properties` for the list of properties known to CMake.
18