From 29691cb6398d8eeaa35fa181f032da1a6480d3dd Mon Sep 17 00:00:00 2001 From: Jan Travnicek <jan.travnicek@.fit.cvut.cz> Date: Tue, 28 May 2019 15:20:30 +0200 Subject: [PATCH] print compiler name and version in preamble --- CMake/Modules/CompilerFlags.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMake/Modules/CompilerFlags.cmake b/CMake/Modules/CompilerFlags.cmake index 3a664feedf..3a6d3649f1 100644 --- a/CMake/Modules/CompilerFlags.cmake +++ b/CMake/Modules/CompilerFlags.cmake @@ -14,6 +14,8 @@ if (NOT ${CMAKE_CXX_COMPILER_ID} MATCHES "(Clang|GNU)") message(WARNING "Compiler ${CMAKE_CXX_COMPILER_ID} is not officially supported.") endif () +message("[Current compiler] ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}") + # set build flags add_compile_options(-Wall -pedantic -pipe -Wextra -Werror -Wshadow -Wpointer-arith -Wcast-qual -Wdelete-non-virtual-dtor -Wredundant-decls) -- GitLab