• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# TODO: This must need some dependencies, but it builds fine without them.
2#set(LLVM_USED_LIBS ???)
3
4add_clang_library(clangSerialization
5  ASTCommon.cpp
6  ASTReader.cpp
7  ASTReaderDecl.cpp
8  ASTReaderStmt.cpp
9  ASTWriter.cpp
10  ASTWriterDecl.cpp
11  ASTWriterStmt.cpp
12  ChainedIncludesSource.cpp
13  GeneratePCH.cpp
14  )
15
16add_dependencies(clangSerialization
17  ClangAttrClasses
18  ClangAttrList
19  ClangAttrPCHRead
20  ClangAttrPCHWrite
21  ClangDiagnosticFrontend
22  ClangDiagnosticLex
23  ClangDiagnosticSema
24  ClangDeclNodes
25  ClangStmtNodes)
26