mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
2604b42f9a
out of 13/RInclude instead of /src/gno/build.tools. This implies that builddate.rez has to have been previously installed in 13/RInclude; this is done by the 'install' and 'release' targets in /src/gno/build.tools.
35 lines
680 B
Plaintext
35 lines
680 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: libcontrib.rez,v 1.3 1998/12/22 16:05:33 gdr-ftp Exp $
|
|
*/
|
|
#define LIB "lcontrib"
|
|
#define DESC "A library of non-standard but still useful subroutines.\n"
|
|
#define GNO_VER "GNO v2.0.6\n"
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 0, /* Version 1.0.0 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB, /* Program name */
|
|
DESC GNO_VER
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB " v1.0 (September 1997)\n"
|
|
DESC GNO_VER
|
|
BUILD_DATE
|
|
};
|