Files
puzzles/version.c
Simon Tatham c05b4697a8 Introduce a versioning mechanism, and an `About' box in all front
ends. Versioning will be done solely by Subversion revision number,
since development on these puzzles is very incremental and gradual
and there don't tend to be obvious points to place numbered
releases.

[originally from svn r5781]
2005-05-15 10:31:11 +00:00

17 lines
220 B
C

/*
* Puzzles version numbering.
*/
#define STR1(x) #x
#define STR(x) STR1(x)
#if defined REVISION
char ver[] = "Revision: r" STR(REVISION);
#else
char ver[] = "Unidentified build, " __DATE__ " " __TIME__;
#endif