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.
9 lines
418 B
9 lines
418 B
5 years ago
|
set(main_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/main.dir/cmake_pch.hxx")
|
||
|
|
||
|
file(STRINGS ${main_pch_header} main_pch_header_strings)
|
||
|
string(REGEX MATCH "#pragma warning\\(push, 0\\).*#include.*pch.h.*#pragma warning\\(pop\\)" matched_code ${main_pch_header_strings})
|
||
|
if(NOT matched_code)
|
||
|
set(RunCMake_TEST_FAILED "Generated pch file doesn't include expected prologue and epilogue code")
|
||
|
return()
|
||
|
endif()
|