https://github.com/Kitware/CMake
Raw File
Tip revision: 5cfc2e926af645840c6a0464451af18f08528879 authored by Brad King on 11 November 2016, 14:24:18 UTC
CMake 3.7.0
Tip revision: 5cfc2e9
DEPENDS.rst
DEPENDS
-------

Specifies that this test should only be run after the specified list of tests.

Set this to a list of tests that must finish before this test is run. The
results of those tests are not considered, the dependency relationship is
purely for order of execution (i.e. it is really just a *run after*
relationship). Consider using test fixtures with setup tests if a dependency
with successful completion is required (see :prop_test:`FIXTURES_REQUIRED`).
back to top