https://github.com/Kitware/CMake
Revision 1cc637da205dd62ba1afabee748a35f14de1a180 authored by Brad King on 25 March 2013, 14:07:52 UTC, committed by CMake Topic Stage on 25 March 2013, 14:07:52 UTC
763a6dc string: Fix regex documentation of '^' and '$' (#14028)

2 parent s 1a60115 + 763a6dc
Raw File
Tip revision: 1cc637da205dd62ba1afabee748a35f14de1a180 authored by Brad King on 25 March 2013, 14:07:52 UTC
Merge topic 'doc-string-regex'
Tip revision: 1cc637d
CMakeLists.txt
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")
back to top