Jeffrey Yasskin | 0a86d44 | 2011-02-11 23:46:38 +0000 | [diff] [blame] | 1 | # TODO: This must need some dependencies, but it builds fine without them. |
| 2 | #set(LLVM_USED_LIBS ???) |
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 3 | |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 4 | add_clang_library(clangSerialization |
Argyrios Kyrtzidis | 0eca89e | 2010-08-20 16:03:52 +0000 | [diff] [blame] | 5 | ASTCommon.cpp |
Sebastian Redl | 904c9c8 | 2010-08-18 23:57:11 +0000 | [diff] [blame] | 6 | ASTReader.cpp |
| 7 | ASTReaderDecl.cpp |
| 8 | ASTReaderStmt.cpp |
Sebastian Redl | 4ee2ad0 | 2010-08-18 23:56:31 +0000 | [diff] [blame] | 9 | ASTWriter.cpp |
| 10 | ASTWriterDecl.cpp |
| 11 | ASTWriterStmt.cpp |
Argyrios Kyrtzidis | 0199ac0 | 2011-03-09 21:12:34 +0000 | [diff] [blame] | 12 | ChainedIncludesSource.cpp |
| 13 | GeneratePCH.cpp |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 14 | ) |
| 15 | |
| 16 | add_dependencies(clangSerialization |
| 17 | ClangAttrClasses |
| 18 | ClangAttrList |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 19 | ClangAttrPCHRead |
| 20 | ClangAttrPCHWrite |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 21 | ClangDiagnosticFrontend |
| 22 | ClangDiagnosticLex |
| 23 | ClangDiagnosticSema |
| 24 | ClangDeclNodes |
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 25 | ClangStmtNodes) |