From f307b11cf913493bd5057f6562450eca2a9bb4a8 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 7 Jan 2015 14:19:15 +0000 Subject: Manually specify the folder that llvm-ranlib should reside in for CMake-produced solutions that care about such things (like MSVC). This takes llvm-ranlib out of the root solution folder and places it into the Tools folder where it belongs. llvm-svn: 225353 --- llvm/tools/llvm-ar/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/tools/llvm-ar') diff --git a/llvm/tools/llvm-ar/CMakeLists.txt b/llvm/tools/llvm-ar/CMakeLists.txt index da1789e2e96..3782c87e4d3 100644 --- a/llvm/tools/llvm-ar/CMakeLists.txt +++ b/llvm/tools/llvm-ar/CMakeLists.txt @@ -24,4 +24,6 @@ add_custom_command(OUTPUT ${llvm_ranlib} DEPENDS llvm-ar) add_custom_target(llvm-ranlib ALL DEPENDS ${llvm_ranlib}) +set_target_properties(llvm-ranlib PROPERTIES FOLDER Tools) + install(SCRIPT install_symlink.cmake -DCMAKE_INSTALL_PREFIX=\"${CMAKE_INSTALL_PREFIX}\") -- cgit v1.2.3