view examples/ParallelJIT/CMakeLists.txt @ 116:a609e5c42ecc

change from CGF to this
author mir3636
date Mon, 08 Aug 2016 19:47:00 +0900
parents 60c9769439b8
children 1172e4bd9c6f
line wrap: on
line source

set(LLVM_LINK_COMPONENTS
  Core
  ExecutionEngine
  Interpreter
  MC
  Support
  nativecodegen
  )

add_llvm_example(ParallelJIT
  ParallelJIT.cpp
  )

if(HAVE_LIBPTHREAD)
  target_link_libraries(ParallelJIT pthread)
endif(HAVE_LIBPTHREAD)