diff options
Diffstat (limited to 'contrib/llvm/tools/clang/lib/CodeGen/CMakeLists.txt')
-rw-r--r-- | contrib/llvm/tools/clang/lib/CodeGen/CMakeLists.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/llvm/tools/clang/lib/CodeGen/CMakeLists.txt b/contrib/llvm/tools/clang/lib/CodeGen/CMakeLists.txt new file mode 100644 index 0000000..a226400 --- /dev/null +++ b/contrib/llvm/tools/clang/lib/CodeGen/CMakeLists.txt @@ -0,0 +1,37 @@ +set(LLVM_NO_RTTI 1) + +add_clang_library(clangCodeGen + CGBlocks.cpp + CGBuiltin.cpp + CGCall.cpp + CGClass.cpp + CGCXX.cpp + CGDebugInfo.cpp + CGDecl.cpp + CGDeclCXX.cpp + CGException.cpp + CGExpr.cpp + CGExprAgg.cpp + CGExprComplex.cpp + CGExprConstant.cpp + CGExprCXX.cpp + CGExprScalar.cpp + CGObjC.cpp + CGObjCGNU.cpp + CGObjCMac.cpp + CGRecordLayoutBuilder.cpp + CGRTTI.cpp + CGStmt.cpp + CGTemporaries.cpp + CGVTables.cpp + CGVTT.cpp + CodeGenFunction.cpp + CodeGenModule.cpp + CodeGenTypes.cpp + ItaniumCXXABI.cpp + Mangle.cpp + ModuleBuilder.cpp + TargetInfo.cpp + ) + +add_dependencies(clangCodeGen ClangStmtNodes) |