diff options
author | Etienne Bergeron <etienneb@google.com> | 2016-07-11 23:09:33 +0000 |
---|---|---|
committer | Etienne Bergeron <etienneb@google.com> | 2016-07-11 23:09:33 +0000 |
commit | 3e3f7da05ecff5798c252a3bba17138ffb636fcf (patch) | |
tree | 77d65c6b62a53572887477188d000902c6021f9e /lib/interception/tests | |
parent | 51a6b97fcae62f91ec63d999ecd343535798e173 (diff) | |
download | compiler-rt-3e3f7da05ecff5798c252a3bba17138ffb636fcf.tar.gz |
missing modifications for http://reviews.llvm.org/D21952
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@275124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/interception/tests')
-rw-r--r-- | lib/interception/tests/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/interception/tests/CMakeLists.txt b/lib/interception/tests/CMakeLists.txt index e0ed89706..bfe41fed2 100644 --- a/lib/interception/tests/CMakeLists.txt +++ b/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) |