1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

cmake: Remove unused property on some targets: LLVM_LINK_LIBS

This doesn't appear to be used anywhere.

Reviewed By: serge-sans-paille

Differential Revision: https://reviews.llvm.org/D100021
This commit is contained in:
Tom Stellard 2021-07-22 19:58:05 -07:00
parent 69627dbd2f
commit 85eff83056

View File

@ -651,10 +651,9 @@ function(llvm_add_library name)
# property has been set to an empty value.
set_property(TARGET ${name} PROPERTY LLVM_LINK_COMPONENTS ${ARG_LINK_COMPONENTS} ${LLVM_LINK_COMPONENTS})
# These two properties are internal properties only used to make sure the
# This property is an internal property only used to make sure the
# link step applied in LLVMBuildResolveComponentsLink uses the same
# properties as the target_link_libraries call below.
set_property(TARGET ${name} PROPERTY LLVM_LINK_LIBS ${ARG_LINK_LIBS})
# property as the target_link_libraries call below.
set_property(TARGET ${name} PROPERTY LLVM_LIBTYPE ${libtype})
endif()