ed55b1b8d2
We remove from Tests/CTestTest*/CMakeLists.txt some historical cruft that is no longer used by the test suite.
9 lines
192 B
CMake
9 lines
192 B
CMake
cmake_minimum_required (VERSION 2.6)
|
|
PROJECT(CTestTestFailure)
|
|
INCLUDE(CTest)
|
|
|
|
ADD_EXECUTABLE (NoBuild badCode.cxx)
|
|
TARGET_LINK_LIBRARIES (NoBuild ${EXTRA_LIBS})
|
|
|
|
ADD_TEST (TestNoExe NoBuild)
|