blob: 26367a658456b00b64348468a160c930bb52fc08 [file] [log] [blame]
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")