Carbon.r 598 Bytes
Newer Older
1 2 3 4 5 6
/*
 *  Permit this Carbon application to launch on OS X
 *
 *  by Josef W. Wankerl
 *  04/11/00
 */
7 8
#define USE_CARB_RESOURCE
#ifdef USE_CARB_RESOURCE
9
/*----------------------------carb  Carbon on OS X launch information --------------------------*/
10 11 12 13 14
type 'carb' {
};


resource 'carb'(0) {
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
};
#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