mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
25 lines
592 B
CMake
25 lines
592 B
CMake
set(vcFiltersFile "${RunCMake_TEST_BINARY_DIR}/SourceGroupTree.vcxproj.filters")
|
|
if(NOT EXISTS "${vcFiltersFile}")
|
|
set(RunCMake_TEST_FAILED "Filters file ${vcFiltersFile} does not exist.")
|
|
return()
|
|
endif()
|
|
|
|
file(STRINGS "${vcFiltersFile}" lines)
|
|
|
|
include(${RunCMake_TEST_SOURCE_DIR}/SourceGroupHelpers.cmake)
|
|
|
|
set(SOURCE_GROUPS_TO_FIND
|
|
"Dir"
|
|
"Dir\\DirNested"
|
|
"Generated"
|
|
"SourcesPrefix"
|
|
"SourcesPrefix\\PrefixedNested"
|
|
)
|
|
|
|
foreach(GROUP_NAME IN LISTS SOURCE_GROUPS_TO_FIND)
|
|
find_source_group("${lines}" ${GROUP_NAME})
|
|
if(NOT FILTER_FOUND)
|
|
return()
|
|
endif()
|
|
endforeach()
|