You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
291 B
8 lines
291 B
6 years ago
|
# We want a single test that always passes. We should never actually get to
|
||
|
# configure with this file, so we use a successful configure-build-test
|
||
|
# sequence to denote failure of the test case.
|
||
|
include(CTest)
|
||
|
add_test(NAME willPass
|
||
|
COMMAND ${CMAKE_COMMAND} -E touch someFile.txt
|
||
|
)
|