From e84c1d83ada7a67308e9e56b201bf63d9542748e Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Fri, 2 Jun 2017 19:38:11 +0000 Subject: [CMake][runtimes] Add install target for runtimes builtins This adds an install-builtins target to avoid having to list all builtins targets explicitly. Differential Revision: https://reviews.llvm.org/D32710 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304587 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtimes/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtimes/CMakeLists.txt') diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt index ef56fa1b936..6793a49a2dd 100644 --- a/runtimes/CMakeLists.txt +++ b/runtimes/CMakeLists.txt @@ -188,6 +188,7 @@ else() # if this is included from LLVM's CMake else() get_cmake_property(variableNames VARIABLES) add_custom_target(builtins) + add_custom_target(install-builtins) foreach(target ${LLVM_BUILTIN_TARGETS}) string(REPLACE "-" ";" builtin_target_list ${target}) foreach(item ${builtin_target_list}) @@ -218,6 +219,7 @@ else() # if this is included from LLVM's CMake USE_TOOLCHAIN ${EXTRA_ARGS}) add_dependencies(builtins builtins-${target}) + add_dependencies(install-builtins install-builtins-${target}) endforeach() endif() set(deps builtins) -- cgit v1.2.3