reverted yet another accidental commit of testing code in r57505
[wxWidgets.git] / samples / minimal / minimal.plc
1 // Change this to your bundle identifier string
2 #define kBundleIdentifier "org.wxwidgets.samples.minimal"
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
8 #define kBundleGetInfo kBundleShortVersion ", Copyright © 2005 by wxWidgets."
9
10 plist
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"
24         key "CFBundleIconFile" value string "mondrian"
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
33 localize "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
39 }