From 2d4173c3c70e660622df46a2e69e1c7d4667019d Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Tue, 4 Sep 2018 19:10:37 +0000 Subject: [PATCH] [CMake] Provide a custom target to install LLVM libraries This simplifies installing all LLVM libraries when doing component build; now you can include llvm-libraries in distribution components. Differential Revision: https://reviews.llvm.org/D51603 llvm-svn: 341395 --- llvm/CMakeLists.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index b608d10..177e43e 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -983,6 +983,27 @@ if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) DEPENDS llvm-headers COMPONENT llvm-headers) endif() + + # Custom target to install all libraries. + add_custom_target(llvm-libraries) + set_target_properties(llvm-libraries PROPERTIES FOLDER "Misc") + + if (NOT CMAKE_CONFIGURATION_TYPES) + add_llvm_install_targets(install-llvm-libraries + DEPENDS llvm-libraries + COMPONENT llvm-libraries) + endif() + + get_property(LLVM_LIBS GLOBAL PROPERTY LLVM_LIBS) + if(LLVM_LIBS) + list(REMOVE_DUPLICATES LLVM_LIBS) + foreach(lib ${LLVM_LIBS}) + add_dependencies(llvm-libraries ${lib}) + if (NOT CMAKE_CONFIGURATION_TYPES) + add_dependencies(install-llvm-libraries install-${lib}) + endif() + endforeach() + endif() endif() # This must be at the end of the LLVM root CMakeLists file because it must run -- 2.7.4