[llvm-commits] [llvm] r95761 - /llvm/trunk/examples/CMakeLists.txt
Garrison Venn
gvenn.cfe.dev at gmail.com
Tue Feb 9 18:50:08 PST 2010
Author: gvenn
Date: Tue Feb 9 20:50:08 2010
New Revision: 95761
URL: http://llvm.org/viewvc/llvm-project?rev=95761&view=rev
Log:
Prevented ExceptionDemo example being built on WINDOWS via if( NOT WIN32 )
check in examples cmake list file. This has NOT been tested.
Modified:
llvm/trunk/examples/CMakeLists.txt
Modified: llvm/trunk/examples/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/CMakeLists.txt?rev=95761&r1=95760&r2=95761&view=diff
==============================================================================
--- llvm/trunk/examples/CMakeLists.txt (original)
+++ llvm/trunk/examples/CMakeLists.txt Tue Feb 9 20:50:08 2010
@@ -3,7 +3,10 @@
add_subdirectory(HowToUseJIT)
add_subdirectory(Kaleidoscope)
add_subdirectory(ModuleMaker)
-add_subdirectory(ExceptionDemo)
+
+if( NOT WIN32 )
+ add_subdirectory(ExceptionDemo)
+endif()
include(CheckIncludeFile)
check_include_file(pthread.h HAVE_PTHREAD_H)
More information about the llvm-commits
mailing list