blob: 71f28ff5878fadd220579a9eb8934167c33102ed (
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
26
27
28
|
# TODO: This must need some dependencies, but it builds fine without them.
#set(LLVM_USED_LIBS ???)
add_clang_library(clangSerialization
ASTCommon.h
ASTReaderInternals.h
ASTCommon.cpp
ASTReader.cpp
ASTReaderDecl.cpp
ASTReaderStmt.cpp
ASTWriter.cpp
ASTWriterDecl.cpp
ASTWriterStmt.cpp
GeneratePCH.cpp
Module.cpp
ModuleManager.cpp
)
add_dependencies(clangSerialization
ClangAttrClasses
ClangAttrList
ClangAttrPCHRead
ClangAttrPCHWrite
ClangDiagnosticLex
ClangDiagnosticSema
ClangDiagnosticSerialization
ClangDeclNodes
ClangStmtNodes)
|