X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=examples%2FCMakeLists.txt;h=54ee6cc3a3a41ee0188b8be3f5ecd8c338772c79;hb=e2ff00e117ba9b758b298e671f65c0b002f8a52d;hp=c5b80793e0b5919b76289b78081fd59f3a99be33;hpb=9f85634bd2fccd2f366b7ce9048f6c9f95ebba18;p=oota-llvm.git diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index c5b80793e0b..54ee6cc3a3a 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -4,8 +4,9 @@ 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)