9 lines
195 B
CMake
9 lines
195 B
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
project(CTestTestFailure)
|
|
include(CTest)
|
|
|
|
add_executable (NoBuild badCode.cxx)
|
|
target_link_libraries (NoBuild ${EXTRA_LIBS})
|
|
|
|
add_test (TestNoExe NoBuild)
|