summaryrefslogtreecommitdiff
path: root/examples/ParallelJIT/CMakeLists.txt
blob: 91ac5ef4675128d85f2b8d348cf8303ffb821d4a (plain)
1
2
3
4
5
6
7
8
9
add_llvm_example(ParallelJIT
  ParallelJIT.cpp
  )

add_llvm_link_components(ParallelJIT jit interpreter nativecodegen)

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