xref: /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/CMakeLists.txt (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
1set(LLVM_LINK_COMPONENTS
2  Support
3  TargetParser
4  )
5
6add_clang_library(clangExtractAPI
7  API.cpp
8  APIIgnoresList.cpp
9  AvailabilityInfo.cpp
10  ExtractAPIConsumer.cpp
11  ExtractAPIVisitor.cpp
12  DeclarationFragments.cpp
13  Serialization/SerializerBase.cpp
14  Serialization/SymbolGraphSerializer.cpp
15  TypedefUnderlyingTypeResolver.cpp
16
17  LINK_LIBS
18  clangAST
19  clangBasic
20  clangFrontend
21  clangIndex
22  clangLex
23  )
24