2009-10-04 10:30:41 +03:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2013-03-16 19:13:01 +02:00
|
|
|
project(CTestTestFailure)
|
|
|
|
include(CTest)
|
2009-10-04 10:30:41 +03:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
add_executable (NoBuild badCode.cxx)
|
|
|
|
target_link_libraries (NoBuild ${EXTRA_LIBS})
|
2009-10-04 10:30:41 +03:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
add_test (TestNoExe NoBuild)
|