summaryrefslogtreecommitdiff
path: root/Tests/CTestTestDepends/CMakeLists.txt
blob: 5cd6d6665775b45da1740f5369a0b23a30ca1cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required (VERSION 2.6)
project(CTestTestDepends)
include(CTest)

add_executable (simple simple.cxx)
add_executable (TestExe::Simple ALIAS simple)
add_test (NAME one COMMAND TestExe::Simple)
add_test (two simple)
add_test (three simple)

# Add redundant (but not cyclical) dependencies
set_tests_properties(two PROPERTIES DEPENDS "one")
set_tests_properties(three PROPERTIES DEPENDS "one;two")