blob: 14522ba2a1bff9c0117396fd0edeaec0286fa72f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
add_llvm_component_library(LLVMInterpreter
Execution.cpp
ExternalFunctions.cpp
Interpreter.cpp
DEPENDS
intrinsics_gen
LINK_COMPONENTS
CodeGen
Core
ExecutionEngine
Support
)
if( LLVM_ENABLE_FFI )
target_link_libraries( LLVMInterpreter PRIVATE FFI::ffi )
endif()
|