mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
94d058ba4a
llvm-svn: 56682
12 lines
263 B
CMake
12 lines
263 B
CMake
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 )
|