llvm-project/llvm/examples/ParallelJIT/CMakeLists.txt

10 lines
209 B
CMake
Raw Normal View History

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)