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.
11 lines
286 B
11 lines
286 B
3 years ago
|
function (find_xml_file name)
|
||
|
file(GLOB test_xml_file "${RunCMake_TEST_BINARY_DIR}/Testing/*/${name}.xml")
|
||
|
if (NOT test_xml_file)
|
||
|
message(FATAL_ERROR
|
||
|
"${name}.xml not created.")
|
||
|
endif ()
|
||
|
endfunction ()
|
||
|
|
||
|
find_xml_file(DynamicAnalysis)
|
||
|
find_xml_file(DynamicAnalysis-Test)
|