Wiki source code of Preparing the WOFramework

Last modified by Ulrich Köster on 2006/08/21 02:18

Show last authors
1 Create a Info.plist in the Resources folder of the project. Example Info.plist:
2
3 {{code 0="xml"}}
4
5 <?xml version="1.0" encoding="UTF-8"?>
6 <plist version="0.9">
7 <dict>
8 <key>NSJavaPathClient</key>
9 <string>foo.jar</string>
10 <key>CFBundleIconFile</key>
11 <string>WOAfile.icns</string>
12 <key>CFBundleExecutable</key>
13 <string>Foo</string>
14 <key>NSJavaRoot</key>
15 <string>Resources/Java</string>
16 <key>NSJavaRootClient</key>
17 <string>WebServerResources/Java</string>
18 <key>NSJavaNeeded</key>
19 <true/>
20 <key>CFBundleName</key>
21 <string></string>
22 <key>NSExecutable</key>
23 <string>Foo</string>
24 <key>NSJavaPath</key>
25 <array>
26 </array>
27 <key>CFBundleInfoDictionaryVersion</key>
28 <string>6.0</string>
29 <key>NOTE</key>
30 <string>Please, do NOT change this file -- It was generated by ProjectBuilder.</string>
31 <key>Has_WOComponents</key>
32 <true/>
33 <key>CFBundleSignature</key>
34 <string>webo</string>
35 <key>CFBundleShortVersionString</key>
36 <string></string>
37 <key>CFBundleIdentifier</key>
38 <string></string>
39 <key>CFBundlePackageType</key>
40 <string>FMWK</string>
41 </dict>
42 </plist>
43
44 {{/code}}