mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-17 10:55:58 +00:00

This removes the dependency from SupportTests to all of the LLVM backends, and makes it link faster. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@259705 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
225 B
CMake
15 lines
225 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
MC
|
|
MCDisassembler
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(MCTests
|
|
Disassembler.cpp
|
|
DwarfLineTables.cpp
|
|
StringTableBuilderTest.cpp
|
|
TargetRegistry.cpp
|
|
YAMLTest.cpp
|
|
)
|