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.
18 lines
480 B
18 lines
480 B
set(_cache_file "${RunCMake_TEST_BINARY_DIR}/tmp/FOO-cache-Debug.cmake")
|
|
|
|
if(NOT EXISTS "${_cache_file}")
|
|
set(RunCMake_TEST_FAILED "Initial cache not created")
|
|
return()
|
|
endif()
|
|
|
|
file(READ "${_cache_file}" _cache)
|
|
|
|
if(NOT "${_cache}" MATCHES "set\\(FOO \"BAR\".+\\)") # \(\)
|
|
set(RunCMake_TEST_FAILED "Cannot find FOO argument in cache")
|
|
return()
|
|
endif()
|
|
if("${CMAKE_MATCH_0}" MATCHES FORCE)
|
|
set(RunCMake_TEST_FAILED "Expected not forced FOO argument")
|
|
return()
|
|
endif()
|