Skip to content

Commit

Permalink
Adds user-defined build setting for separate icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasgomollon committed Oct 12, 2012
1 parent 70745d1 commit 472ec6b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions Cheddar for iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1473,6 +1473,14 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ICON_100 = "DevIcon-100.png";
ICON_114 = "DevIcon-114.png";
ICON_144 = "DevIcon-144.png";
ICON_29 = "DevIcon-29.png";
ICON_50 = "DevIcon-50.png";
ICON_57 = "DevIcon-57.png";
ICON_58 = "DevIcon-58.png";
ICON_72 = "DevIcon-72.png";
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
SDKROOT = iphoneos;
};
Expand All @@ -1493,6 +1501,14 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ICON_100 = "Icon-100.png";
ICON_114 = "Icon-114.png";
ICON_144 = "Icon-144.png";
ICON_29 = "Icon-29.png";
ICON_50 = "Icon-50.png";
ICON_57 = "Icon-57.png";
ICON_58 = "Icon-58.png";
ICON_72 = "Icon-72.png";
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
SDKROOT = iphoneos;
Expand Down
16 changes: 8 additions & 8 deletions Resources/Cheddar-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon-29.png</string>
<string>Icon-50.png</string>
<string>Icon-57.png</string>
<string>Icon-58.png</string>
<string>Icon-72.png</string>
<string>Icon-100.png</string>
<string>Icon-114.png</string>
<string>Icon-144.png</string>
<string>${ICON_29}</string>
<string>${ICON_50}</string>
<string>${ICON_57}</string>
<string>${ICON_58}</string>
<string>${ICON_72}</string>
<string>${ICON_100}</string>
<string>${ICON_114}</string>
<string>${ICON_144}</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
Expand Down

0 comments on commit 472ec6b

Please sign in to comment.