2009-09-18 20:16:46 +04:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2012-08-13 21:47:32 +04:00
|
|
|
project(CTestTestFailure)
|
|
|
|
include(CTest)
|
2009-09-18 20:16:46 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_executable (NoBuild badCode.cxx)
|
|
|
|
target_link_libraries (NoBuild ${EXTRA_LIBS})
|
2009-09-18 20:16:46 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_test (TestNoExe NoBuild)
|