From b811d6a84feec184148c0920fde370ba8fa1812b Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 27 Oct 2021 18:42:10 +0200 Subject: [PATCH] cmake: don't print verbose make If someone wants verbose make they can set the env var. This is now in line with monero's behaviour. --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93782659..1d240780 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,10 +19,6 @@ include(CheckCCompilerFlag) include(CheckCXXCompilerFlag) include(CheckLinkerFlag) -if(DEBUG) - set(CMAKE_VERBOSE_MAKEFILE ON) -endif() - set(BUILD_GUI_DEPS ON) set(ARCH "x86-64" CACHE STRING "Target architecture") set(BUILD_64 ON CACHE BOOL "Build 64-bit binaries")