summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/XcodeProject/XcodePreserveObjcFlag-check.cmake
blob: 332906f8e69d28cb15802bc42ba2800a7eb1cb4e (plain)
1
2
3
4
5
6
7
set(expect "-ObjC")
file(STRINGS ${RunCMake_TEST_BINARY_DIR}/XcodePreserveObjcFlag.xcodeproj/project.pbxproj actual
     REGEX "OTHER_CPLUSPLUSFLAGS = [^;]*;" LIMIT_COUNT 1)
if(NOT "${actual}" MATCHES "${expect}")
  message(SEND_ERROR "The actual project contains the line:\n ${actual}\n"
    "which does not match expected regex:\n ${expect}\n")
endif()