From: Aaron Ballman Date: Wed, 11 Nov 2015 18:13:42 +0000 (+0000) Subject: Hiding the scan-build and scan-view projects under the Misc folder in IDEs instead... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c41a416b757c02e516c96ffa3fde9a28484cd584;p=clang Hiding the scan-build and scan-view projects under the Misc folder in IDEs instead of having them at the root view. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@252771 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/scan-build/CMakeLists.txt b/tools/scan-build/CMakeLists.txt index d6535a1098..7c2df32e0d 100644 --- a/tools/scan-build/CMakeLists.txt +++ b/tools/scan-build/CMakeLists.txt @@ -76,5 +76,6 @@ if(CLANG_INSTALL_SCANBUILD) endforeach() add_custom_target(scan-build ALL DEPENDS ${Depends}) + set_target_properties(scan-build PROPERTIES FOLDER "Misc") endif() diff --git a/tools/scan-view/CMakeLists.txt b/tools/scan-view/CMakeLists.txt index 91d3ab4fc5..fb0f26f7e4 100644 --- a/tools/scan-view/CMakeLists.txt +++ b/tools/scan-view/CMakeLists.txt @@ -37,4 +37,5 @@ if(CLANG_INSTALL_SCANVIEW) endforeach() add_custom_target(scan-view ALL DEPENDS ${Depends}) + set_target_properties(scan-view PROPERTIES FOLDER "Misc") endif()