summaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter/CMakeLists.txt
blob: 39df555d5e294c38afca882c20a4d6f042854790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# If the user required a custom path for ffi headers, use it on its
# abolute form (see config-ix.cmake):
if( FFI_INCLUDE_DIR )
  include_directories( ${FFI_INCLUDE_PATH} )
endif()

# If the user required a custom path for libffi, use it on its abolute
# form (see config-ix.cmake):
if( FFI_LIBRARY_DIR )
  link_directories( ${FFI_LIBRARY_PATH} )
endif()

add_llvm_library(LLVMInterpreter
  Execution.cpp
  ExternalFunctions.cpp
  Interpreter.cpp
  )

if( LLVM_ENABLE_FFI )
  target_link_libraries( LLVMInterpreter ffi )
endif()