mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
9491485bb0
This removes the unit test from a968e7b82eac as it reportedly causes some link problems. It can be reinstated once the issues are understood and sorted out.
21 lines
284 B
CMake
21 lines
284 B
CMake
include_directories(
|
|
${LLVM_MAIN_SRC_DIR}/lib/Target/ARM
|
|
${LLVM_BINARY_DIR}/lib/Target/ARM
|
|
)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
ARMCodeGen
|
|
ARMDesc
|
|
ARMInfo
|
|
CodeGen
|
|
GlobalISel
|
|
MC
|
|
SelectionDAG
|
|
Support
|
|
Target
|
|
)
|
|
|
|
add_llvm_target_unittest(ARMTests
|
|
MachineInstrTest.cpp
|
|
)
|