2020-08-30 11:54:41 +02:00
|
|
|
macro(ensure_props_set projectFile)
|
|
|
|
if(NOT EXISTS "${projectFile}")
|
|
|
|
set(RunCMake_TEST_FAILED "Project file ${projectFile} does not exist.")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2021-11-20 13:41:27 +01:00
|
|
|
set(Setting1Found FALSE)
|
|
|
|
set(Setting2Found FALSE)
|
2020-08-30 11:54:41 +02:00
|
|
|
|
|
|
|
file(STRINGS "${projectFile}" lines)
|
|
|
|
foreach(line IN LISTS lines)
|
|
|
|
if(line MATCHES "<SourceProperty1.*Debug.*>SourceProperty1Value</SourceProperty1>")
|
|
|
|
message("SourceProperty1 setting found")
|
2021-11-20 13:41:27 +01:00
|
|
|
set(Setting1Found TRUE)
|
|
|
|
endif()
|
|
|
|
if(line MATCHES "<SourceProperty2.*Debug.*>SourceProperty2Value</SourceProperty2>")
|
|
|
|
message("SourceProperty2 setting found")
|
|
|
|
set(Setting2Found TRUE)
|
2020-08-30 11:54:41 +02:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2021-11-20 13:41:27 +01:00
|
|
|
if (NOT Setting1Found)
|
2020-08-30 11:54:41 +02:00
|
|
|
set(RunCMake_TEST_FAILED "SourceProperty1 setting was not found")
|
|
|
|
return()
|
|
|
|
endif()
|
2021-11-20 13:41:27 +01:00
|
|
|
if (NOT Setting2Found)
|
|
|
|
set(RunCMake_TEST_FAILED "SourceProperty2 setting was not found")
|
|
|
|
return()
|
|
|
|
endif()
|
2020-08-30 11:54:41 +02:00
|
|
|
endmacro()
|
|
|
|
|
|
|
|
ensure_props_set("${RunCMake_TEST_BINARY_DIR}/foo.vcxproj")
|