blob: 91d565d4020aafda6d49462cd8616d168d5844b6 [file] [log] [blame]
cmake_minimum_required (VERSION 3.5)
project (CTestTestScheduler)
include (CTest)
add_executable (Sleep sleep.c)
foreach (time RANGE 1 4)
add_test (TestSleep${time} Sleep ${time})
endforeach ()