2009-12-07 17:34:05 +03:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2012-08-13 21:47:32 +04:00
|
|
|
project(CTestTestBadExe)
|
|
|
|
include(CTest)
|
2009-12-07 17:34:05 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/notAnExe.txt" "${CMAKE_CURRENT_BINARY_DIR}/notAnExe.txt" COPYONLY)
|
2009-12-07 17:34:05 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_test (TestBadExe "${CMAKE_CURRENT_BINARY_DIR}/notAnExe.txt")
|