From a088b36b8b8c03162b5b03816daff7f3951f59ea Mon Sep 17 00:00:00 2001 From: Etienne Bergeron Date: Mon, 11 Jul 2016 21:51:56 +0000 Subject: [compiler-rt] Fix VisualStudio virtual folders layout Summary: This patch is a refactoring of the way cmake 'targets' are grouped. It won't affect non-UI cmake-generators. Clang/LLVM are using a structured way to group targets which ease navigation through Visual Studio UI. The Compiler-RT projects differ from the way Clang/LLVM are grouping targets. This patch doesn't contain behavior changes. Reviewers: kubabrecka, rnk Subscribers: wang0109, llvm-commits, kubabrecka, chrisha Differential Revision: http://reviews.llvm.org/D21952 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@275111 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/esan/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/esan/CMakeLists.txt') diff --git a/lib/esan/CMakeLists.txt b/lib/esan/CMakeLists.txt index 573d7d456..2a0a71b2e 100644 --- a/lib/esan/CMakeLists.txt +++ b/lib/esan/CMakeLists.txt @@ -1,6 +1,7 @@ # Build for the EfficiencySanitizer runtime support library. add_custom_target(esan) +set_target_properties(esan PROPERTIES FOLDER "Compiler-RT Misc") set(ESAN_RTL_CFLAGS ${SANITIZER_COMMON_CFLAGS}) append_rtti_flag(OFF ESAN_RTL_CFLAGS) -- cgit v1.2.1