2021-09-14 00:13:48 +02:00
|
|
|
set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/main.vcxproj")
|
|
|
|
if(NOT EXISTS "${vcProjectFile}")
|
2023-07-02 19:51:09 +02:00
|
|
|
string(CONCAT RunCMake_TEST_FAILED "Project file\n ${vcProjectFile}\n" "does not exist.")
|
2021-09-14 00:13:48 +02:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(TreatWarningAsError_FOUND FALSE)
|
|
|
|
file(STRINGS "${vcProjectFile}" lines)
|
|
|
|
foreach(line IN LISTS lines)
|
|
|
|
if(line MATCHES "^ *<TreatWarningAsError>([^<>]*)</TreatWarningAsError>$")
|
|
|
|
set(TreatWarningAsError_FOUND TRUE)
|
|
|
|
set(expectedValue "false")
|
|
|
|
set(actualValue "${CMAKE_MATCH_1}")
|
|
|
|
if(NOT (${actualValue} STREQUAL ${expectedValue}))
|
|
|
|
set(RunCMake_TEST_FAILED "TreatWarningAsError \"${actualValue}\" differs from expected value \"${expectedValue}\".")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
if(NOT TreatWarningAsError_FOUND)
|
|
|
|
set(RunCMake_TEST_FAILED "Property TreatWarningAsError not found in project file:\n ${vcProjectFile}.")
|
|
|
|
return()
|
|
|
|
endif()
|