[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

llvm-svn: 304587
This commit is contained in:
Petr Hosek 2017-06-02 19:38:11 +00:00
parent 04ffaca604
commit 3440bc37ff
1 changed files with 2 additions and 0 deletions

View File

@ -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)