From: Oscar Fuentes Date: Tue, 27 Oct 2009 19:42:21 +0000 (+0000) Subject: CMake: Append LLVM_LIBDIR_SUFFIX to library destination. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfb06ea8c103c74f944d836e71cf62a32e9772e4;p=clang CMake: Append LLVM_LIBDIR_SUFFIX to library destination. Based on a patch by Ingmar Vanhassel. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85276 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0cd52d0d94..56212f1639 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ macro(add_clang_library name) set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag}) endif(MSVC) install(TARGETS ${name} - LIBRARY DESTINATION lib + LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}) endmacro(add_clang_library)