mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
f6b4db365a
This needlessly produces warnings during the test runs that no-one sees but that are distracting when actually inspecting the logs.
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)
|