aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/TextAPI/CMakeLists.txt
blob: 29533756e41aed872976c3452fa34355c6690228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
add_llvm_component_library(LLVMTextAPI
  Architecture.cpp
  ArchitectureSet.cpp
  InterfaceFile.cpp
  TextStubV5.cpp
  PackedVersion.cpp
  Platform.cpp
  RecordsSlice.cpp
  RecordVisitor.cpp
  Symbol.cpp
  SymbolSet.cpp
  Target.cpp
  TextAPIError.cpp
  TextStub.cpp
  TextStubCommon.cpp
  Utils.cpp

  ADDITIONAL_HEADER_DIRS
  "${LLVM_MAIN_INCLUDE_DIR}/llvm/TextAPI"

  LINK_COMPONENTS
  Support
  BinaryFormat
  TargetParser
)

add_subdirectory(BinaryReader)