1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-15 08:07:41 +02:00

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".
This commit is contained in:
Leland Lucius 2020-02-21 14:32:13 -06:00
parent 0bbc974a7b
commit c9e760b764

View File

@ -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