xref: /llvm-project/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt (revision b66339575a9b541e67ce5ad2ba7e88da07cf9305)
1add_llvm_component_library(LLVMInterpreter
2  Execution.cpp
3  ExternalFunctions.cpp
4  Interpreter.cpp
5
6  DEPENDS
7  intrinsics_gen
8
9  LINK_COMPONENTS
10  CodeGen
11  Core
12  ExecutionEngine
13  Support
14  )
15
16if( LLVM_ENABLE_FFI )
17  target_link_libraries( LLVMInterpreter PRIVATE FFI::ffi )
18endif()
19