mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-30 13:47:32 +00:00
e3748b5a85
A very minimal demo of how to use the LLJIT class, along the lines of the old HowToUseJIT example. llvm-svn: 361435
15 lines
381 B
CMake
15 lines
381 B
CMake
add_subdirectory(BrainF)
|
|
add_subdirectory(Fibonacci)
|
|
add_subdirectory(HowToUseJIT)
|
|
add_subdirectory(HowToUseLLJIT)
|
|
add_subdirectory(Kaleidoscope)
|
|
add_subdirectory(ModuleMaker)
|
|
|
|
if(LLVM_ENABLE_EH AND (NOT WIN32) AND (NOT "${LLVM_NATIVE_ARCH}" STREQUAL "ARM"))
|
|
add_subdirectory(ExceptionDemo)
|
|
endif()
|
|
|
|
if( HAVE_PTHREAD_H )
|
|
add_subdirectory(ParallelJIT)
|
|
endif( HAVE_PTHREAD_H )
|