Home | History | Annotate | Download | only in Serialization
      1 # TODO: This must need some dependencies, but it builds fine without them.
      2 #set(LLVM_USED_LIBS ???)
      3 
      4 add_clang_library(clangSerialization
      5   ASTCommon.h
      6   ASTReaderInternals.h
      7   ASTCommon.cpp
      8   ASTReader.cpp
      9   ASTReaderDecl.cpp
     10   ASTReaderStmt.cpp
     11   ASTWriter.cpp
     12   ASTWriterDecl.cpp
     13   ASTWriterStmt.cpp
     14   ChainedIncludesSource.cpp
     15   GeneratePCH.cpp
     16   Module.cpp
     17   ModuleManager.cpp
     18   )
     19 
     20 add_dependencies(clangSerialization
     21   ClangAttrClasses
     22   ClangAttrList
     23   ClangAttrPCHRead
     24   ClangAttrPCHWrite
     25   ClangDiagnosticFrontend
     26   ClangDiagnosticLex
     27   ClangDiagnosticSema
     28   ClangDeclNodes
     29   ClangStmtNodes)
     30