8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
23 lines
315 B
CMake
23 lines
315 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/lib/Target/AArch64
|
|
${CMAKE_BINARY_DIR}/lib/Target/AArch64
|
|
)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
AArch64CodeGen
|
|
AArch64Desc
|
|
AArch64Info
|
|
CodeGen
|
|
Core
|
|
GlobalISel
|
|
MC
|
|
MIRParser
|
|
SelectionDAG
|
|
Support
|
|
Target
|
|
)
|
|
|
|
add_llvm_unittest(AArch64Tests
|
|
InstSizes.cpp
|
|
)
|