From c9e760b76403528a1c413b644ff8a9dc7354d545 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Fri, 21 Feb 2020 14:32:13 -0600 Subject: [PATCH] Show that the build was CMake based Probably want to pull this out later, but it's in the About dialog as part of the "Build Type". --- src/AboutDialog.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index b926f485d..52fc3a886 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -711,6 +711,11 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S ) if( (sizeof(void*) == 8) ) buildType = XO("%s, 64 bits").Format( buildType ); +// Remove this once the transition to CMake is complete +#if defined(CMAKE_INTDIR) + buildType = XO("CMake %s").Format( buildType ); +#endif + AddBuildinfoRow(&informationStr, XO("Build type:"), buildType.Translation()); #ifdef _MSC_FULL_VER