diff options
Diffstat (limited to 'lib/AST/CMakeLists.txt')
-rw-r--r-- | lib/AST/CMakeLists.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/AST/CMakeLists.txt b/lib/AST/CMakeLists.txt new file mode 100644 index 000000000000..19ab9f650eda --- /dev/null +++ b/lib/AST/CMakeLists.txt @@ -0,0 +1,32 @@ +set(LLVM_NO_RTTI 1) + +add_clang_library(clangAST + APValue.cpp + ASTConsumer.cpp + ASTContext.cpp + Builtins.cpp + CFG.cpp + DeclarationName.cpp + DeclBase.cpp + Decl.cpp + DeclCXX.cpp + DeclGroup.cpp + DeclObjC.cpp + DeclPrinter.cpp + DeclTemplate.cpp + ExprConstant.cpp + Expr.cpp + ExprCXX.cpp + InheritViz.cpp + NestedNameSpecifier.cpp + ParentMap.cpp + Stmt.cpp + StmtDumper.cpp + StmtIterator.cpp + StmtPrinter.cpp + StmtViz.cpp + TemplateName.cpp + Type.cpp + ) + +add_dependencies(clangAST ClangDiagnosticAST) |