From 0e4c2d35f2cfff1a1cd598037ee7d7602e6fc5b9 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Sun, 26 May 2024 15:22:37 +0200 Subject: [PATCH] CMakeLists.txt: print the detected CMake version Signed-off-by: Yegor Yefremov --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41d933c..402cc73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.5) project(can-utils LANGUAGES C) +message(STATUS "CMake version: ${CMAKE_VERSION}") + include (CheckFunctionExists) include (CheckSymbolExists) include (GNUInstallDirs)