view examples/ParallelJIT/CMakeLists.txt @ 136:6cd7e602c98b

Fix compile error to update llvm 5.0.1
author mir3636
date Sat, 17 Feb 2018 11:50:31 +0900
parents 3a76565eade5
children
line wrap: on
line source

set(LLVM_LINK_COMPONENTS
  Core
  ExecutionEngine
  Interpreter
  MC
  Support
  nativecodegen
  )

add_llvm_example(ParallelJIT
  ParallelJIT.cpp
  )

target_link_libraries(ParallelJIT PRIVATE ${LLVM_PTHREAD_LIB})