forked from OSchip/llvm-project
[cmake] Fix -stripped for umbrella library install targets
Make the install-llvm-libraries-stripped and install-clang-libraries-stripped targets depend on the individual library stripped install targets, so that they actually install the libraries.
This commit is contained in:
parent
ced7617c38
commit
a299178ae7
|
@ -588,6 +588,7 @@ if(CLANG_LIBS)
|
|||
add_dependencies(clang-libraries ${lib})
|
||||
if(NOT LLVM_ENABLE_IDE)
|
||||
add_dependencies(install-clang-libraries install-${lib})
|
||||
add_dependencies(install-clang-libraries-stripped install-${lib}-stripped)
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
|
|
|
@ -1072,6 +1072,7 @@ if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
|||
add_dependencies(llvm-libraries ${lib})
|
||||
if (NOT LLVM_ENABLE_IDE)
|
||||
add_dependencies(install-llvm-libraries install-${lib})
|
||||
add_dependencies(install-llvm-libraries-stripped install-${lib}-stripped)
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue