mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
17 lines
235 B
CMake
17 lines
235 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
${LLVM_TARGETS_TO_BUILD}
|
||
|
CodeGen
|
||
|
Core
|
||
|
FileCheck
|
||
|
MC
|
||
|
MIRParser
|
||
|
Support
|
||
|
Target
|
||
|
)
|
||
|
|
||
|
add_llvm_unittest(MIRTests
|
||
|
MachineMetadata.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(MIRTests PRIVATE LLVMTestingSupport)
|