mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
07e0f96d2a
file with the describe source.
38 lines
796 B
Plaintext
38 lines
796 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: describe.rez,v 1.5 1999/04/05 19:47:19 gdr-ftp Exp $
|
|
*/
|
|
#include "Types.rez"
|
|
|
|
/* Don't forget to update the version numbers, below (two places) */
|
|
#define PROG "describe"
|
|
#define DESC "program information database utility"
|
|
#define AUTHOR "Author: James Brookes"
|
|
#define BUILD_DATE "Build Date: " $$Date
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 6, /* Version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " (GNO)\n"
|
|
BUILD_DATE
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.0.7\n"
|
|
DESC " (GNO) \n"
|
|
BUILD_DATE "\n"
|
|
AUTHOR
|
|
};
|
|
|
|
|