Files
clang-p2996/llvm/lib/Target/AMDGPU/Disassembler/CMakeLists.txt
Tom Stellard 62748e934c AMDGPU: Remove add_dependencies calls from CMakeLists.txt
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
2023-07-05 20:03:11 -07:00

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
)