r252771 - Hiding the scan-build and scan-view projects under the Misc folder in IDEs instead of having them at the root view.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 11 10:13:43 PST 2015
Author: aaronballman
Date: Wed Nov 11 12:13:42 2015
New Revision: 252771
URL: http://llvm.org/viewvc/llvm-project?rev=252771&view=rev
Log:
Hiding the scan-build and scan-view projects under the Misc folder in IDEs instead of having them at the root view.
Modified:
cfe/trunk/tools/scan-build/CMakeLists.txt
cfe/trunk/tools/scan-view/CMakeLists.txt
Modified: cfe/trunk/tools/scan-build/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-build/CMakeLists.txt?rev=252771&r1=252770&r2=252771&view=diff
==============================================================================
--- cfe/trunk/tools/scan-build/CMakeLists.txt (original)
+++ cfe/trunk/tools/scan-build/CMakeLists.txt Wed Nov 11 12:13:42 2015
@@ -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()
Modified: cfe/trunk/tools/scan-view/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-view/CMakeLists.txt?rev=252771&r1=252770&r2=252771&view=diff
==============================================================================
--- cfe/trunk/tools/scan-view/CMakeLists.txt (original)
+++ cfe/trunk/tools/scan-view/CMakeLists.txt Wed Nov 11 12:13:42 2015
@@ -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()
More information about the cfe-commits
mailing list