These are redundant. The same dependencies are being added as part of the add_llvm_component_library() call. I confirmed this by diff'ing the build.ninja files before and after the change and saw no change. Reviewed By: arsenm Differential Revision: https://reviews.llvm.org/D153166
18 lines
300 B
CMake
18 lines
300 B
CMake
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
|
|
add_llvm_component_library(LLVMAMDGPUDisassembler
|
|
AMDGPUDisassembler.cpp
|
|
|
|
LINK_COMPONENTS
|
|
AMDGPUDesc
|
|
AMDGPUInfo
|
|
AMDGPUUtils
|
|
CodeGenTypes
|
|
MC
|
|
MCDisassembler
|
|
Support
|
|
|
|
ADD_TO_COMPONENT
|
|
AMDGPU
|
|
)
|