From 45c2b3307e293a25f7eb9e16d54e63ef358f36e2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 20 May 2012 15:31:29 -0500 Subject: [PATCH] CMake doesn't enable DEBUG by default, acprep does --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e845b01..db74b8dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ option(USE_PYTHON "Build support for the Python scripting bridge" OFF) option(USE_DOXYGEN "Build reference documentation using Doxygen" OFF) option(NO_ASSERTS "Build without any internal consistency checks" OFF) -option(BUILD_DEBUG "Build support for runtime debugging" ON) +option(BUILD_DEBUG "Build support for runtime debugging" OFF) option(BUILD_LIBRARY "Build and install Ledger as a library" ON) option(BUILD_DOCS "Build and install documentation" OFF)