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

add_executable (simple simple.cxx)
add_test (one 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")