Reinstate "Nuke the old JIT."
[oota-llvm.git] / examples / ParallelJIT / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Core
3   ExecutionEngine
4   Interpreter
5   Support
6   nativecodegen
7   )
8
9 add_llvm_example(ParallelJIT
10   ParallelJIT.cpp
11   )
12
13 if(HAVE_LIBPTHREAD)
14   target_link_libraries(ParallelJIT pthread)
15 endif(HAVE_LIBPTHREAD)