1set(LLVM_LINK_COMPONENTS 2 BitReader 3 BitstreamReader 4 Object 5 Support 6 TargetParser 7 ) 8 9 10add_clang_library(clangSerialization 11 ASTCommon.cpp 12 ASTReader.cpp 13 ASTReaderDecl.cpp 14 ASTReaderStmt.cpp 15 ASTWriter.cpp 16 ASTWriterDecl.cpp 17 ASTWriterStmt.cpp 18 GeneratePCH.cpp 19 GlobalModuleIndex.cpp 20 InMemoryModuleCache.cpp 21 ModuleFile.cpp 22 ModuleFileExtension.cpp 23 ModuleManager.cpp 24 PCHContainerOperations.cpp 25 ObjectFilePCHContainerReader.cpp 26 TemplateArgumentHasher.cpp 27 28 ADDITIONAL_HEADERS 29 ASTCommon.h 30 ASTReaderInternals.h 31 32 LINK_LIBS 33 clangAST 34 clangBasic 35 clangLex 36 clangSema 37 38 DEPENDS 39 omp_gen 40 ClangDriverOptions 41 ) 42