From 2b3dc8f20b1f4c0bc4bf65cf79ba44679ba91667 Mon Sep 17 00:00:00 2001 From: Laurent Morichetti Date: Tue, 17 May 2022 11:01:17 -0700 Subject: [PATCH] Remove CMAKE_VERBOSE_MAKEFILE This should be enabled at the command line during the cmake configure step (-DCMAKE_VERBOSE_MAKEFILE=True). Verbose output can also be enabled during the build by setting the VERBOSE=1 GNU make variable, or using the -v Ninja option. Change-Id: Ie842c900c83c8f9f1c3ab4119e3bbc7931d371f5 --- CMakeLists.txt | 3 --- test/CMakeLists.txt | 1 - test/hsa/test/CMakeLists.txt | 1 - 3 files changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ac119a4904..7afbacd0be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,9 +22,6 @@ cmake_minimum_required ( VERSION 3.5.0 ) -## Verbose output. -set ( CMAKE_VERBOSE_MAKEFILE TRUE CACHE BOOL "Verbose Output" FORCE ) - ## Set module name and project name. set ( ROCTRACER_NAME "roctracer" ) set ( ROCTRACER_TARGET "${ROCTRACER_NAME}64" ) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index dd8656ae62..4f2ab13146 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -21,7 +21,6 @@ ################################################################################ cmake_minimum_required ( VERSION 3.5.0 ) -set ( CMAKE_VERBOSE_MAKEFILE TRUE CACHE BOOL "Verbose Output" FORCE ) if ( NOT DEFINED ROOT_DIR ) MESSAGE ( FATAL_ERROR "ROOT_DIR is not defined" ) diff --git a/test/hsa/test/CMakeLists.txt b/test/hsa/test/CMakeLists.txt index 4e24e8a422..bfe3728e73 100644 --- a/test/hsa/test/CMakeLists.txt +++ b/test/hsa/test/CMakeLists.txt @@ -21,7 +21,6 @@ ################################################################################ cmake_minimum_required ( VERSION 2.8.12 ) -set ( CMAKE_VERBOSE_MAKEFILE TRUE CACHE BOOL "Verbose Output" FORCE ) set ( EXE_NAME "ctrl" )