diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-26 19:48:03 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-26 19:48:03 +0000 |
commit | dbc2e856fce973243d2dfba88d573d3c88f06020 (patch) | |
tree | 979cbee4a308e05095045e55f4fc1c399eb2b153 /examples/ParallelJIT | |
parent | dfe8c84e1e7be1ec4f7303d3d056fb106ab28437 (diff) | |
download | external_llvm-dbc2e856fce973243d2dfba88d573d3c88f06020.zip external_llvm-dbc2e856fce973243d2dfba88d573d3c88f06020.tar.gz external_llvm-dbc2e856fce973243d2dfba88d573d3c88f06020.tar.bz2 |
CMake: Builds all examples. Corrected name of CBackend target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/ParallelJIT')
-rw-r--r-- | examples/ParallelJIT/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/ParallelJIT/CMakeLists.txt b/examples/ParallelJIT/CMakeLists.txt new file mode 100644 index 0000000..d8dd708 --- /dev/null +++ b/examples/ParallelJIT/CMakeLists.txt @@ -0,0 +1,7 @@ +set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen) + +add_llvm_example(ParallelJIT + ParallelJIT.cpp + ) + +target_link_libraries(ParallelJIT pthread) |