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