From c9c5405b52dd8063c4a2253f1824bcaf519a39ca Mon Sep 17 00:00:00 2001 From: Etienne Bergeron Date: Mon, 11 Jul 2016 23:09:33 +0000 Subject: [PATCH] missing modifications for http://reviews.llvm.org/D21952 llvm-svn: 275124 --- compiler-rt/lib/asan/CMakeLists.txt | 2 ++ compiler-rt/lib/interception/tests/CMakeLists.txt | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/asan/CMakeLists.txt b/compiler-rt/lib/asan/CMakeLists.txt index c8e28d5c53ae..b7e41fc7021c 100644 --- a/compiler-rt/lib/asan/CMakeLists.txt +++ b/compiler-rt/lib/asan/CMakeLists.txt @@ -106,6 +106,8 @@ endif() # Build ASan runtimes shipped with Clang. add_custom_target(asan) +set_target_properties(asan PROPERTIES FOLDER "Compiler-RT Misc") + if(APPLE) add_compiler_rt_runtime(clang_rt.asan SHARED diff --git a/compiler-rt/lib/interception/tests/CMakeLists.txt b/compiler-rt/lib/interception/tests/CMakeLists.txt index e0ed897062f2..bfe41fed2fed 100644 --- a/compiler-rt/lib/interception/tests/CMakeLists.txt +++ b/compiler-rt/lib/interception/tests/CMakeLists.txt @@ -62,7 +62,8 @@ include_directories(../..) macro(add_interceptor_lib library) add_library(${library} STATIC ${ARGN}) set_target_properties(${library} PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + FOLDER "Compiler-RT Runtime tests") endmacro() function(get_interception_lib_for_arch arch lib lib_name)