cmake/Help/command/get_test_property.rst

16 lines
416 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
get_test_property
-----------------
Get a property of the test.
::
get_test_property(test property VAR)
2015-04-27 22:25:09 +02:00
Get a property from the test. The value of the property is stored in
2015-11-17 17:22:37 +01:00
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``.
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
See also the more general :command:`get_property` command.