X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=examples%2FCMakeLists.txt;h=54ee6cc3a3a41ee0188b8be3f5ecd8c338772c79;hb=e2ff00e117ba9b758b298e671f65c0b002f8a52d;hp=fa91149755c68243c222e4ba36bc74a4f7ecf42a;hpb=dbc2e856fce973243d2dfba88d573d3c88f06020;p=oota-llvm.git diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index fa91149755c..54ee6cc3a3a 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,10 +1,12 @@ add_subdirectory(BrainF) add_subdirectory(Fibonacci) add_subdirectory(HowToUseJIT) +add_subdirectory(Kaleidoscope) add_subdirectory(ModuleMaker) -include(CheckIncludeFile) -check_include_file(pthread.h HAVE_PTHREAD_H) +if( NOT WIN32 ) + add_subdirectory(ExceptionDemo) +endif() if( HAVE_PTHREAD_H ) add_subdirectory(ParallelJIT)