]> git.saurik.com Git - wxWidgets.git/blame - samples/minimal/minimal.plc
Updated copyright year before 2.9.2 release.
[wxWidgets.git] / samples / minimal / minimal.plc
CommitLineData
e49079b2 1// Change this to your bundle identifier string
1eba958a 2#define kBundleIdentifier "org.wxwidgets.samples.minimal"
e49079b2
SC
3
4// Change this to your short version string
5#define kBundleShortVersion __OUTPUT_FILENAME__ " version 1.0"
6
7// Change this to the string to display in the Finder's Get Info window
2613d67b 8#define kBundleGetInfo kBundleShortVersion ", Copyright © 2005 by wxWidgets."
e49079b2
SC
9
10plist
11{
12 dictionary
13 {
14 key "CFBundleIdentifier" value string kBundleIdentifier
15
16 key "CFBundleName" value string __OUTPUT_FILENAME__
17 key "CFBundleGetInfoString" value string kBundleGetInfo
18 key "CFBundleShortVersionString" value string kBundleShortVersion
19
20 key "CFBundlePackageType" value string __OUTPUT_TYPE__
21 key "CFBundleSignature" value string __OUTPUT_CREATOR__
22 key "CFBundleExecutable" value string __OUTPUT_FILENAME__
23 key "CFBundleVersion" value string "1.0"
3cb332c1 24 key "CFBundleIconFile" value string "sample"
e49079b2
SC
25
26 key "CFBundleDevelopmentRegion" value string "English"
27 key "CFBundleInfoDictionaryVersion" value string "6.0"
28 key "LSRequiresCarbon" value boolean true
29 }
30}
31
32// Change this to be localized for English
33localize "English"
34{
35 comment "Localized versions of Info.plist keys"
36 key "CFBundleName" value string __OUTPUT_FILENAME__
37 key "CFBundleGetInfoString" value string kBundleGetInfo
38 key "CFBundleShortVersionString" value string kBundleShortVersion
3cb332c1 39}