[llvm-commits] [llvm] r89211 - /llvm/trunk/CMakeLists.txt

Daniel Dunbar daniel at zuster.org
Wed Nov 18 09:42:22 PST 2009


Author: ddunbar
Date: Wed Nov 18 11:42:22 2009
New Revision: 89211

URL: http://llvm.org/viewvc/llvm-project?rev=89211&view=rev
Log:
Turn LLVM_BUILD_EXAMPLES off by default in CMake builds, to match Makefiles &
Clang.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=89211&r1=89210&r2=89211&view=diff

==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Wed Nov 18 11:42:22 2009
@@ -323,7 +323,7 @@
   add_subdirectory(tools)
 endif()
 
-option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." ON)
+option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF)
 if(LLVM_BUILD_EXAMPLES)
   add_subdirectory(examples)
 endif ()





More information about the llvm-commits mailing list