OSDN Git Service

[CMake][runtimes] Add install target for runtimes builtins
authorPetr Hosek <phosek@chromium.org>
Fri, 2 Jun 2017 19:38:11 +0000 (19:38 +0000)
committerPetr Hosek <phosek@chromium.org>
Fri, 2 Jun 2017 19:38:11 +0000 (19:38 +0000)
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

index ef56fa1..6793a49 100644 (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)