diff options
author | Brad King <brad.king@kitware.com> | 2019-01-14 13:25:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-14 13:43:30 (GMT) |
commit | 77303314dcd58cc820c5e9ad9c30c0428d59b45a (patch) | |
tree | 14514771a07aebb7ffb80891e540cc61caf5e1b5 /Tests/RunCMake/VS10Project/RunCMakeTest.cmake | |
parent | 848dc85187ec1e4b2364987d911ce7af93062b45 (diff) | |
download | CMake-77303314dcd58cc820c5e9ad9c30c0428d59b45a.zip CMake-77303314dcd58cc820c5e9ad9c30c0428d59b45a.tar.gz CMake-77303314dcd58cc820c5e9ad9c30c0428d59b45a.tar.bz2 |
Restore support for a custom source group for CMakeLists.txt
Since commit v3.11.0-rc1~467^2 (VS,Xcode: Add CMakeLists.txt sources
without mutating targets, 2017-10-18) we do not add `CMakeLists.txt` to
target sources but instead generate references to them directly. This
accidentally dropped generation of the `.vcxproj.filters` entry for a
source group in which `CMakeLists.txt` is the only member.
Fixes: #18795
Diffstat (limited to 'Tests/RunCMake/VS10Project/RunCMakeTest.cmake')
-rw-r--r-- | Tests/RunCMake/VS10Project/RunCMakeTest.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/VS10Project/RunCMakeTest.cmake b/Tests/RunCMake/VS10Project/RunCMakeTest.cmake index db375ae..c796840 100644 --- a/Tests/RunCMake/VS10Project/RunCMakeTest.cmake +++ b/Tests/RunCMake/VS10Project/RunCMakeTest.cmake @@ -1,6 +1,7 @@ include(RunCMake) run_cmake(ExplicitCMakeLists) +run_cmake(SourceGroupCMakeLists) run_cmake(VsConfigurationType) run_cmake(VsTargetsFileReferences) |