f206839636
- Get rid of VER_STRING since it's the same as VERSION - Add new defines VER_MAJOR, VER_MINOR, VER_PATCH and VER_SVN and use them for the version number on Windows. - TODO: Add the capability to detect installed version to the Windows installer.
12 lines
455 B
C
12 lines
455 B
C
/////////////////////////////////////////////////////////////////////////
|
|
// This file is checked in as bxversion.h.in. The configure script
|
|
// substitutes variables and creates bxversion.h.
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#define VERSION "@VERSION@"
|
|
#define VER_MAJOR "@VER_MAJOR@"
|
|
#define VER_MINOR "@VER_MINOR@"
|
|
#define VER_PATCH "@VER_PATCH@"
|
|
#define VER_SVN "@VER_SVN@"
|
|
#define REL_STRING "@REL_STRING@"
|