Add Kaleidoscope to examples/ so that it gets built regularly and we'll notice
[oota-llvm.git] / examples / CMakeLists.txt
1 add_subdirectory(BrainF)
2 add_subdirectory(Fibonacci)
3 add_subdirectory(HowToUseJIT)
4 add_subdirectory(Kaleidoscope)
5 add_subdirectory(ModuleMaker)
6
7 include(CheckIncludeFile)
8 check_include_file(pthread.h HAVE_PTHREAD_H)
9
10 if( HAVE_PTHREAD_H )
11   add_subdirectory(ParallelJIT)
12 endif( HAVE_PTHREAD_H )