forked from OSchip/llvm-project
CMake: Builds all examples. Corrected name of CBackend target.
llvm-svn: 56682
This commit is contained in:
parent
c0f4d00d67
commit
9e3f7dbeda
|
@ -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(Fibonacci)
|
||||
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 )
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
|
||||
|
||||
add_llvm_executable(HowToUseJIT
|
||||
HowToUseJIT.cpp
|
||||
)
|
|
@ -0,0 +1,5 @@
|
|||
set(LLVM_LINK_COMPONENTS bitwriter)
|
||||
|
||||
add_llvm_example(ModuleMaker
|
||||
ModuleMaker.cpp
|
||||
)
|
|
@ -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