summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/PrecompileHeaders/PchPrologueEpilogue-check.cmake
blob: ba220f3be851adea9265a7721e40cbc0945430a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if (NOT RunCMake_GENERATOR_IS_MULTI_CONFIG)
  set(main_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/main.dir/CMakeFiles/main.dir/cmake_pch.hxx")
else()
  set(main_pch_header "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/main.dir/cmake_pch.hxx")
endif()

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()