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.
25 lines
812 B
25 lines
812 B
set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/foo.vcxproj")
|
|
if(NOT EXISTS "${vcProjectFile}")
|
|
set(RunCMake_TEST_FAILED "Project file ${vcProjectFile} does not exist.")
|
|
return()
|
|
endif()
|
|
|
|
set(frameworkReferenceSet FALSE)
|
|
|
|
file(STRINGS "${vcProjectFile}" lines)
|
|
foreach(line IN LISTS lines)
|
|
if(line MATCHES "^ *<FrameworkReference Include=\"([^\"]*)\" />$")
|
|
if("${CMAKE_MATCH_1}" STREQUAL "Microsoft.WindowsDesktop.App.WPF")
|
|
message(STATUS "foo.vcxproj has FrameworkReference set")
|
|
set(frameworkReferenceSet TRUE)
|
|
else()
|
|
message(STATUS "foo.vcxproj has FrameworkReference incorrectly set to ${CMAKE_MATCH_1}")
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
|
|
if(NOT frameworkReferenceSet)
|
|
set(RunCMake_TEST_FAILED "FrameworkReference not found or not set correctly.")
|
|
return()
|
|
endif()
|