1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_library(clangExtractAPI
6  API.cpp
7  ExtractAPIConsumer.cpp
8  DeclarationFragments.cpp
9  Serialization/SerializerBase.cpp
10  Serialization/SymbolGraphSerializer.cpp
11  TypedefUnderlyingTypeResolver.cpp
12
13  LINK_LIBS
14  clangAST
15  clangBasic
16  clangFrontend
17  clangIndex
18  clangLex
19  )
20