From e08e8cc881d31ed1a9200fee10b86e81459eafd9 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 3 Oct 2019 20:58:11 +0200 Subject: [PATCH] CMakeLists.txt: Show detected Qt version. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9835094f..fd0d8b7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,6 +103,8 @@ set(CMAKE_AUTOMOC TRUE) find_package(Qt5 5.3 COMPONENTS Core Gui Widgets Svg REQUIRED) +message(STATUS "Qt version: ${Qt5_VERSION}") + if(WIN32) # MXE workaround: Use pkg-config to find Qt5 libs. # https://github.com/mxe/mxe/issues/1642 -- 2.30.2