Started on plst resource. Not enabled yet.

This commit is contained in:
Jack Jansen 2001-03-06 22:45:29 +00:00
parent 36bcf9b94f
commit bb74f95821
1 changed files with 22 additions and 4 deletions

View File

@ -4,12 +4,30 @@
* by Josef W. Wankerl
* 04/11/00
*/
/*----------------------------carb Carbon on OS X launch information --------------------------*/
#define USE_CARB_RESOURCE
#ifdef USE_CARB_RESOURCE
/*----------------------------carb ¥ Carbon on OS X launch information --------------------------*/
type 'carb' {
};
resource 'carb'(0) {
};
};
#else
#include "macbuildno.h"
#include "patchlevel.h"
type 'plst'
{
string;
};
resource 'plst' (0)
{
"CFBundleName = \"MacPython\";\n" /* short name for Mac OS X */
"CFBundleShortVersionString = \""PY_VERSION"\";\n"
"CFBundleGetInfoString = \"MacPython "PY_VERSION".\";\n"
};
#endif