1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/examples/ParallelJIT/CMakeLists.txt
2010-09-10 21:14:25 +00:00

10 lines
209 B
CMake

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)