summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XcodePreserveNonOptimizationFlags-check.cmake
blob: 2f6c03d2070cf4863a5d6d0c730be8efbc5eb557 (plain)
1
2
3
4
5
6
7
8
file(STRINGS ${RunCMake_TEST_BINARY_DIR}/XcodePreserveNonOptimizationFlags.xcodeproj/project.pbxproj actual
     REGEX "OTHER_CPLUSPLUSFLAGS = [^;]*;")
foreach(expect "-DA" "-DB +-DC" "-DD")
  if(NOT "${actual}" MATCHES "${expect}")
    message(SEND_ERROR "The actual project contains the lines:\n ${actual}\n"
      "which do not match expected regex:\n ${expect}\n")
  endif()
endforeach()