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.
10 lines
422 B
10 lines
422 B
2 years ago
|
if(actual_stdout MATCHES "CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION='([^']+)'")
|
||
|
set(actual_version "${CMAKE_MATCH_1}")
|
||
|
if(NOT "${actual_version}" STREQUAL "${expect_version}")
|
||
|
set(RunCMake_TEST_FAILED "Actual SDK version '${actual_version}' did not match expected '${expect_version}'")
|
||
|
return()
|
||
|
endif()
|
||
|
else()
|
||
|
set(RunCMake_TEST_FAILED "No CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION found in output.")
|
||
|
endif()
|