From e1caa98c5bfecbd0ac0920c09b7a1b4b1e9184a5 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 18 Nov 2009 17:42:22 +0000 Subject: [PATCH] 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 839def7d6f7..00214782ca2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 () -- 2.34.1