From 53689d081b3fa54c9832a97a22314e57bcbd4e2d Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Sat, 13 Jun 2020 01:31:40 +0100 Subject: [PATCH] Print C++ compiler version when running qmake --- swift.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/swift.pro b/swift.pro index 007e71cde..8e4828c17 100644 --- a/swift.pro +++ b/swift.pro @@ -28,6 +28,9 @@ swiftConfig(unitTests) { SUBDIRS += tests } +clang|gcc: system($$QMAKE_CXX --version) +else:msvc: system($$QMAKE_CXX) + include(install.pri) include(src/xswiftbus/version.pri)