You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
312 B
13 lines
312 B
8 years ago
|
cmake_minimum_required(VERSION 3.8)
|
||
|
project(@CASE_NAME@ C)
|
||
|
include(CTest)
|
||
|
|
||
|
if (WIN32)
|
||
|
set(skip_command "@CMAKE_CURRENT_LIST_DIR@/skip.bat")
|
||
|
else ()
|
||
|
set(skip_command "@CMAKE_CURRENT_LIST_DIR@/skip.sh")
|
||
|
endif ()
|
||
|
|
||
|
add_test(NAME SuccessfulTest COMMAND "${CMAKE_COMMAND}" --version)
|
||
|
@CASE_CMAKELISTS_SUFFIX_CODE@
|