mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-24 12:20:00 +00:00
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
This commit is contained in:
parent
dfe8c84e1e
commit
dbc2e856fc
6
examples/BrainF/CMakeLists.txt
Normal file
6
examples/BrainF/CMakeLists.txt
Normal file
@ -0,0 +1,6 @@
|
||||
set(LLVM_LINK_COMPONENTS jit bitwriter nativecodegen interpreter)
|
||||
|
||||
add_llvm_example(BrainF
|
||||
BrainF.cpp
|
||||
BrainFDriver.cpp
|
||||
)
|
@ -1 +1,11 @@
|
||||
add_subdirectory(BrainF)
|
||||
add_subdirectory(Fibonacci)
|
||||
add_subdirectory(HowToUseJIT)
|
||||
add_subdirectory(ModuleMaker)
|
||||
|
||||
include(CheckIncludeFile)
|
||||
check_include_file(pthread.h HAVE_PTHREAD_H)
|
||||
|
||||
if( HAVE_PTHREAD_H )
|
||||
add_subdirectory(ParallelJIT)
|
||||
endif( HAVE_PTHREAD_H )
|
||||
|
5
examples/HowToUseJIT/CMakeLists.txt
Normal file
5
examples/HowToUseJIT/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
|
||||
|
||||
add_llvm_executable(HowToUseJIT
|
||||
HowToUseJIT.cpp
|
||||
)
|
5
examples/ModuleMaker/CMakeLists.txt
Normal file
5
examples/ModuleMaker/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
set(LLVM_LINK_COMPONENTS bitwriter)
|
||||
|
||||
add_llvm_example(ModuleMaker
|
||||
ModuleMaker.cpp
|
||||
)
|
7
examples/ParallelJIT/CMakeLists.txt
Normal file
7
examples/ParallelJIT/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
|
||||
|
||||
add_llvm_example(ParallelJIT
|
||||
ParallelJIT.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(ParallelJIT pthread)
|
@ -1,3 +1,3 @@
|
||||
add_llvm_target(CBackEnd
|
||||
add_llvm_target(CBackend
|
||||
CBackend.cpp
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user