mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 01:06:46 +00:00
[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
This commit is contained in:
parent
43a958c91e
commit
e84c1d83ad
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user