Files
CMake/Tests/RunCMake/VS10Project/VsCsharpSourceGroup-check.cmake
Kinan Mahdi ac6b18cd90 CSharp: Add support for source groups with out-of-source builds
This also fixes support for multiple sources of the same name in
different directories.  Add a test for both problems.

Issue: #19505
2020-02-28 11:42:01 -05:00

23 lines
564 B
CMake

set(csProjFile "${RunCMake_TEST_BINARY_DIR}/VsCsharpSourceGroup.csproj")
if(NOT EXISTS "${csProjFile}")
set(RunCMake_TEST_FAILED "Project file ${csProjFile} does not exist.")
return()
endif()
file(STRINGS "${csProjFile}" lines)
include(${RunCMake_TEST_SOURCE_DIR}/VsCsharpSourceGroupHelpers.cmake)
set(SOURCE_GROUPS_TO_FIND
"CSharpSourceGroup"
"CSharpSourceGroup/nested"
"Images"
)
foreach(GROUP_NAME IN LISTS ${SOURCE_GROUPS_TO_FIND})
find_source_group("${lines}" ${GROUP_NAME})
if(NOT ${SOURCE_GROUP_FOUND})
return()
endif()
endforeach()