From 53d28ce500ade2fa3f91c89f146626b0f57ca3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Mon, 30 Nov 2020 18:10:10 +0100 Subject: [PATCH] feat(CMake): show version when running cmake (#3813) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1959754a3..a3761e6ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,8 @@ project(AzerothCore) # Require a min version Cmake cmake_minimum_required(VERSION 3.8) +message(STATUS "CMake version: ${CMAKE_VERSION}") + # CMake policies (can not be handled elsewhere) cmake_policy(SET CMP0005 NEW)