1include_directories(
2  ${CMAKE_SOURCE_DIR}/lib/Target/PowerPC
3  ${CMAKE_BINARY_DIR}/lib/Target/PowerPC
4  )
5
6set(LLVM_LINK_COMPONENTS
7  MC
8  Support
9  Target
10  PowerPCCodeGen
11  PowerPCDesc
12  PowerPCInfo
13  )
14
15add_llvm_unittest(PowerPCTests
16  AIXRelocModelTest.cpp
17  )
18