1set(LLVM_LINK_COMPONENTS
2  BitReader
3  Support
4  )
5
6
7add_clang_library(clangSerialization
8  ASTCommon.cpp
9  ASTReader.cpp
10  ASTReaderDecl.cpp
11  ASTReaderStmt.cpp
12  ASTWriter.cpp
13  ASTWriterDecl.cpp
14  ASTWriterStmt.cpp
15  GeneratePCH.cpp
16  GlobalModuleIndex.cpp
17  Module.cpp
18  ModuleManager.cpp
19
20  ADDITIONAL_HEADERS
21  ASTCommon.h
22  ASTReaderInternals.h
23
24  LINK_LIBS
25  clangAST
26  clangBasic
27  clangLex
28  clangSema
29  )
30