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.
cmake/Tests/RunCMake/VSSolution/AddPackageToDefault-check.c...

30 lines
828 B

set(vcSlnFile "${RunCMake_TEST_BINARY_DIR}/AddPackageToDefault.sln")
if(NOT EXISTS "${vcSlnFile}")
set(RunCMake_TEST_FAILED "Project file ${vcSlnFile} does not exist.")
return()
endif()
set(packageGuidFound FALSE)
set(packageGuid "")
set(packageInBuild FALSE)
file(STRINGS "${vcSlnFile}" lines)
foreach(line IN LISTS lines)
if(NOT packageGuidFound)
if(line MATCHES "^Project.*\"PACKAGE.vcx?proj\".*\"{([A-F0-9-]+)}\"$")
set(packageGuidFound TRUE)
set(packageGuid ${CMAKE_MATCH_1})
endif()
else()
if(line MATCHES ".*{${packageGuid}}.*")
if(line MATCHES "^[ \t]*{${packageGuid}}\\..*\\.Build.0 = .*$")
set(packageInBuild TRUE)
endif()
endif()
endif()
endforeach()
if(NOT packageInBuild)
set(RunCMake_TEST_FAILED "PACKAGE is not in default build")
return()
endif()