21 lines
366 B
Text
21 lines
366 B
Text
|
include_directories(
|
||
|
${PROJECT_SOURCE_DIR}/lib/Target/PowerPC
|
||
|
${PROJECT_BINARY_DIR}/lib/Target/PowerPC
|
||
|
)
|
||
|
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
MC
|
||
|
Support
|
||
|
Target
|
||
|
TargetParser
|
||
|
PowerPCCodeGen
|
||
|
PowerPCDesc
|
||
|
PowerPCInfo
|
||
|
)
|
||
|
|
||
|
add_llvm_unittest(PowerPCTests
|
||
|
AIXRelocModelTest.cpp
|
||
|
)
|
||
|
|
||
|
set_property(TARGET PowerPCTests PROPERTY FOLDER "Tests/UnitTests/TargetTests")
|