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.
8 lines
394 B
8 lines
394 B
set(expect "-DKDESRCDIR=\\\\\\\\\\\\\"foo\\\\\\\\\\\\\"")
|
|
file(STRINGS ${RunCMake_TEST_BINARY_DIR}/XcodeObjectNeedsEscape.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()
|