From f47b0546ac0701ebcfb1c56bf33dbb843f74edc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Tue, 11 Sep 2018 14:31:02 +0200 Subject: [PATCH] Make clear separation between linker and compiler flags --- cmake/printSummary.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/printSummary.cmake b/cmake/printSummary.cmake index bc568a59..cba35783 100644 --- a/cmake/printSummary.cmake +++ b/cmake/printSummary.cmake @@ -12,14 +12,14 @@ message( STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}") message( STATUS "------------------------------------------------------------------" ) message( STATUS "CMake Generator: ${CMAKE_GENERATOR}" ) message( STATUS "Compiler info: ${CMAKE_CXX_COMPILER_ID} (${CMAKE_CXX_COMPILER}) ; version: ${CMAKE_CXX_COMPILER_VERSION}") -message( STATUS "Compiler flags") +message( STATUS " --- Compiler flags --- ") message( STATUS "General: ${CMAKE_CXX_FLAGS}" ) message( STATUS "Extra: ${EXTRA_COMPILE_FLAGS}" ) message( STATUS "Debug: ${CMAKE_CXX_FLAGS_DEBUG}" ) message( STATUS "Release: ${CMAKE_CXX_FLAGS_RELEASE}" ) message( STATUS "RelWithDebInfo: ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}" ) message( STATUS "MinSizeRel: ${CMAKE_CXX_FLAGS_MINSIZEREL}" ) -message( STATUS "Linker flags") +message( STATUS " --- Linker flags --- ") message( STATUS "General: ${CMAKE_EXE_LINKER_FLAGS}" ) message( STATUS "Debug: ${CMAKE_EXE_LINKER_FLAGS_DEBUG}" ) message( STATUS "Release: ${CMAKE_EXE_LINKER_FLAGS_RELEASE}" )