From 780f5d7320ae20d8d82e3d522b9ee65f3fe14fed Mon Sep 17 00:00:00 2001 From: Georg Rudoy <0xd34df00d@gmail.com> Date: Tue, 7 Jul 2009 21:55:50 +0000 Subject: [PATCH] Don't build tests and examples in CMake by default. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e27f0f6a..e3dc6dbac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,8 +101,8 @@ option(deprecated-functions "enable deprecated functions for backwards compatibi option(exceptions "build with exception support" ON) option(logging "build with logging" OFF) option(verbose-logging "build with verbose logging" OFF) -option(build_tests "build tests" ON) -option(build_examples "build examples" ON) +option(build_tests "build tests" OFF) +option(build_examples "build examples" OFF) set(CMAKE_CONFIGURATION_TYPES Debug Release RelWithDebInfo)