[PATCH] D15505: Install runtime dlls in the INSTALL_DIR/bin directory. NFC
Sumanth Gundapaneni via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 16 09:10:25 PST 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL255781: Install runtime dlls in the INSTALL_DIR/bin directory. NFC (authored by sgundapa).
Changed prior to commit:
http://reviews.llvm.org/D15505?vs=42897&id=43016#toc
Repository:
rL LLVM
http://reviews.llvm.org/D15505
Files:
llvm/trunk/cmake/modules/AddLLVM.cmake
Index: llvm/trunk/cmake/modules/AddLLVM.cmake
===================================================================
--- llvm/trunk/cmake/modules/AddLLVM.cmake
+++ llvm/trunk/cmake/modules/AddLLVM.cmake
@@ -541,9 +541,11 @@
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
elseif(NOT _is_gtest)
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "LTO")
+ set(install_dir lib${LLVM_LIBDIR_SUFFIX})
if(ARG_SHARED OR BUILD_SHARED_LIBS)
- if(WIN32 OR CYGWIN)
+ if(WIN32 OR CYGWIN OR MINGW)
set(install_type RUNTIME)
+ set(install_dir bin)
else()
set(install_type LIBRARY)
endif()
@@ -553,7 +555,7 @@
install(TARGETS ${name}
EXPORT LLVMExports
- ${install_type} DESTINATION lib${LLVM_LIBDIR_SUFFIX}
+ ${install_type} DESTINATION ${install_dir}
COMPONENT ${name})
if (NOT CMAKE_CONFIGURATION_TYPES)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15505.43016.patch
Type: text/x-patch
Size: 963 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151216/9d2358f7/attachment.bin>
More information about the llvm-commits
mailing list