Home | History | Annotate | Line # | Download | only in Serialization
      1 set(LLVM_LINK_COMPONENTS
      2   BitReader
      3   BitstreamReader
      4   Support
      5   )
      6 
      7 
      8 add_clang_library(clangSerialization
      9   ASTCommon.cpp
     10   ASTReader.cpp
     11   ASTReaderDecl.cpp
     12   ASTReaderStmt.cpp
     13   ASTWriter.cpp
     14   ASTWriterDecl.cpp
     15   ASTWriterStmt.cpp
     16   GeneratePCH.cpp
     17   GlobalModuleIndex.cpp
     18   InMemoryModuleCache.cpp
     19   ModuleFile.cpp
     20   ModuleFileExtension.cpp
     21   ModuleManager.cpp
     22   PCHContainerOperations.cpp
     23 
     24   ADDITIONAL_HEADERS
     25   ASTCommon.h
     26   ASTReaderInternals.h
     27 
     28   LINK_LIBS
     29   clangAST
     30   clangBasic
     31   clangLex
     32   clangSema
     33 
     34   DEPENDS
     35   omp_gen
     36   )
     37