From f08c15f43b27031b0d119a9c9320f9bad744e8f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 12 Apr 2017 17:31:19 +0200 Subject: [PATCH] print CMake version --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 937e5cd..f7f5a54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,8 @@ cmake_minimum_required(VERSION 2.8.12) # first version with add_compile_options() project(SQLiteCpp) +message (STATUS "CMake version: ${CMAKE_VERSION}") + # Define useful variables to handle OS differences: if (WIN32) set(DEV_NULL "NUL")