From c5f52812e1254c9ac3d42bb0bfc7627bb61f6d80 Mon Sep 17 00:00:00 2001 From: Davide Gerhard Date: Sat, 18 May 2019 11:20:50 +0200 Subject: [PATCH] cmake: fix build type string --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4afd749c..c97c53f7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,7 +94,7 @@ if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "MacPorts") set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE) endif() -message(STATUS "Build type set to ${CMAKE_BUILD_TYPE}") +message(STATUS "Build type set to: ${CMAKE_BUILD_TYPE}") # as default disable qDebug() if(NOT DEBUG_OUTPUT)