summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2020-11-30 18:10:10 +0100
committerGitHub <noreply@github.com>2020-11-30 18:10:10 +0100
commit53d28ce500ade2fa3f91c89f146626b0f57ca3c9 (patch)
tree90d5f17ebba0940f355f0a31567fc17e5338b263 /CMakeLists.txt
parent19acb696783607f6ca32034f4e3882ecea4b6900 (diff)
feat(CMake): show version when running cmake (#3813)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1959754a34..a3761e6ef4 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)