projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.
[oota-llvm.git]
/
examples
/
ParallelJIT
/
CMakeLists.txt
1
add_llvm_example(ParallelJIT
2
ParallelJIT.cpp
3
)
4
5
add_llvm_link_components(ParallelJIT jit interpreter nativecodegen)
6
7
if(HAVE_LIBPTHREAD)
8
target_link_libraries(ParallelJIT pthread)
9
endif(HAVE_LIBPTHREAD)