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 |
Douglas Gregor | 98339b9 | 2011-08-25 20:47:51 +0000 | [diff] [blame] | 5 | ASTCommon.h |
| 6 | ASTReaderInternals.h |
Argyrios Kyrtzidis | 0eca89e | 2010-08-20 16:03:52 +0000 | [diff] [blame] | 7 | ASTCommon.cpp |
Sebastian Redl | 904c9c8 | 2010-08-18 23:57:11 +0000 | [diff] [blame] | 8 | ASTReader.cpp |
| 9 | ASTReaderDecl.cpp |
| 10 | ASTReaderStmt.cpp |
Sebastian Redl | 4ee2ad0 | 2010-08-18 23:56:31 +0000 | [diff] [blame] | 11 | ASTWriter.cpp |
| 12 | ASTWriterDecl.cpp |
| 13 | ASTWriterStmt.cpp |
Argyrios Kyrtzidis | 0199ac0 | 2011-03-09 21:12:34 +0000 | [diff] [blame] | 14 | ChainedIncludesSource.cpp |
| 15 | GeneratePCH.cpp |
Douglas Gregor | 98339b9 | 2011-08-25 20:47:51 +0000 | [diff] [blame] | 16 | Module.cpp |
| 17 | ModuleManager.cpp |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 18 | ) |
| 19 | |
| 20 | add_dependencies(clangSerialization |
| 21 | ClangAttrClasses |
| 22 | ClangAttrList |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 23 | ClangAttrPCHRead |
| 24 | ClangAttrPCHWrite |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 25 | ClangDiagnosticFrontend |
| 26 | ClangDiagnosticLex |
| 27 | ClangDiagnosticSema |
| 28 | ClangDeclNodes |
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 29 | ClangStmtNodes) |