diff options
Diffstat (limited to 'clang/lib/AST/Interp/CMakeLists.txt')
-rw-r--r-- | clang/lib/AST/Interp/CMakeLists.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/clang/lib/AST/Interp/CMakeLists.txt b/clang/lib/AST/Interp/CMakeLists.txt new file mode 100644 index 00000000000..75e51f2cf7c --- /dev/null +++ b/clang/lib/AST/Interp/CMakeLists.txt @@ -0,0 +1,34 @@ +set(LLVM_LINK_COMPONENTS + ) + +clang_tablegen(Opcodes.inc + -gen-clang-opcodes + SOURCE Opcodes.td + TARGET Opcodes) + +add_clang_library(clangInterp + Block.cpp + ByteCodeEmitter.cpp + ByteCodeExprGen.cpp + ByteCodeGenError.cpp + ByteCodeStmtGen.cpp + Context.cpp + Descriptor.cpp + Disasm.cpp + EvalEmitter.cpp + Frame.cpp + Function.cpp + Interp.cpp + InterpFrame.cpp + InterpStack.cpp + InterpState.cpp + Pointer.cpp + Program.cpp + Record.cpp + Source.cpp + State.cpp + Type.cpp + + DEPENDS + Opcodes + ) |