discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Summary: GNUstep make and frameworks


From: Andreas Höschler
Subject: Re: Summary: GNUstep make and frameworks
Date: Mon, 5 Jan 2004 23:04:38 +0100


./MyApplication.app/Contents/MacOS
and with a Info-macos.plist file in ./Contents? I could write such a
tool but it surely would take half a day. If this already existed I
would appreciate to spend the time on other stuff.
Interesting. Would this work with all MacOSX versions ? If so, there is
no reason why we shouldn't be using it in gnustep-make. I'll look at it
tonight when I get to an Apple.
Yes, it would, and no, there's not. I've meen meaning to request this for
some time :)

ProjectBuilderWO.app creates correct application bundles if one has a file CustomInfo.plist with at least the following contents in the project directory.

CFBundleIconFile = "HolzPool.icns";

This corresponds to the ICON variable in application.make. However, the app bundle (Contents folder) contains in addition to the file Info-macos.plist with

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>HolzPool</string>
<key>CFBundleIconFile</key>
<string>HolzPool.icns</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSMainNibFile</key>
<string>HolzPool</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>


also a file PkgInfo with

APPL????

I am not sure what this is good for. However, it appears, that the applications created by GNUstep make work correctly with the Dock in 10.2 and 10.3 but not in 10.3, may be because of this missing file.

Has anybody more info about this?

Regards,

Andreas



reply via email to

[Prev in Thread] Current Thread [Next in Thread]