1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-05 16:43:52 +01:00

Use "CMAKE" instead of "CMAKE_INTDIR"

The latter isn't available on all 3 platforms.
This commit is contained in:
Leland Lucius
2020-02-24 10:36:41 -06:00
parent baaafb92df
commit f4d567dd9e

View File

@@ -712,7 +712,7 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
buildType = XO("%s, 64 bits").Format( buildType );
// Remove this once the transition to CMake is complete
#if defined(CMAKE_INTDIR)
#if defined(CMAKE)
buildType = Verbatim("CMake %s").Format( buildType );
#endif