1set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
2
3add_llvm_example(ParallelJIT
4  ParallelJIT.cpp
5  )
6
7if(HAVE_LIBPTHREAD)
8  target_link_libraries(ParallelJIT pthread)
9endif(HAVE_LIBPTHREAD)
10