https://github.com/Kitware/CMake
Raw File
Tip revision: ee1c6a5b0674b77a05c84ac208044f79d25826e5 authored by David Cole on 08 July 2011, 11:12:50 UTC
CMake 2.8.5
Tip revision: ee1c6a5
CMakeLists.txt
cmake_minimum_required (VERSION 2.6)
project(CTestTestCycle)
include(CTest)

add_executable (simple simple.cxx)
add_test (one simple)
add_test (two simple)
add_test (three simple)

# Add cyclical test dependency
set_tests_properties(one PROPERTIES DEPENDS "two")
set_tests_properties(two PROPERTIES DEPENDS "three")
set_tests_properties(three PROPERTIES DEPENDS "one")
back to top