Turn LLVM_BUILD_EXAMPLES off by default in CMake builds, to match Makefiles &

Clang.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89211 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-11-18 17:42:22 +00:00
parent a7193e40e2
commit e1caa98c5b

View File

@ -323,7 +323,7 @@ if(LLVM_BUILD_TOOLS)
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 ()