1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Allow specifying build number for Xcode projects

This commit is contained in:
reuk 2021-04-27 22:09:41 +01:00
parent 768c2f6db1
commit f5a7d4eea5
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
7 changed files with 38 additions and 10 deletions

View file

@ -157,8 +157,8 @@ namespace build_tools
addPlistDictionaryKey (*dict, "CFBundleDisplayName", projectName);
addPlistDictionaryKey (*dict, "CFBundlePackageType", getXcodePackageType (type));
addPlistDictionaryKey (*dict, "CFBundleSignature", getXcodeBundleSignature (type));
addPlistDictionaryKey (*dict, "CFBundleShortVersionString", version);
addPlistDictionaryKey (*dict, "CFBundleVersion", version);
addPlistDictionaryKey (*dict, "CFBundleShortVersionString", marketingVersion);
addPlistDictionaryKey (*dict, "CFBundleVersion", currentProjectVersion);
addPlistDictionaryKey (*dict, "NSHumanReadableCopyright", companyCopyright);
addPlistDictionaryKey (*dict, "NSHighResolutionCapable", true);

View file

@ -59,7 +59,8 @@ namespace build_tools
File iconFile;
String projectName;
String version;
String marketingVersion;
String currentProjectVersion;
String companyCopyright;
String applicationCategory;