mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
This was missed in commit 0bb13ba0e6 (VS: Add support for Visual Studio
solution items, 2024-10-27).
Fixes: #26593
9 lines
432 B
CMake
9 lines
432 B
CMake
set_property(DIRECTORY APPEND PROPERTY VS_SOLUTION_ITEMS
|
|
solution-item-0-1.txt
|
|
solution-item-1-1.txt
|
|
"${CMAKE_CURRENT_LIST_DIR}/solution-item-2-1.txt"
|
|
"${CMAKE_CURRENT_LIST_DIR}/solution-item-2-2.txt")
|
|
source_group("Outer Group" FILES solution-item-1-1.txt)
|
|
source_group("Outer Group/Inner Group" REGULAR_EXPRESSION "solution-item-2-[0-9]+\\.txt")
|
|
add_subdirectory(SolutionItems)
|