forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgbversion.h.in
19 lines (19 loc) · 846 Bytes
/
gbversion.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* gbversion.h is generated from gbversion.h.in which uses autoconf voodoo
* to get the version number from configure.ac.
*
* Isn't simplification via automation grand?
*/
#ifdef RC_INVOKED
// These defines are for the Microsoft resource compiler scripts
// win32/gpsbabel.rc and gui/app.rc
#define VER_FILE @GB.MAJOR@,@GB.MINOR@,@GB.MICRO@,@GB.BUILD@
#define VER_PRODUCT @GB.MAJOR@,@GB.MINOR@,@GB.MICRO@,@GB.BUILD@
#define VER_FILE_STR "@GB.MAJOR@[email protected]@[email protected]@@GB.PACKAGE_RELEASE@"
#define VER_PRODUCT_STR "@GB.MAJOR@[email protected]@[email protected]@@GB.PACKAGE_RELEASE@"
#define VER_COPYRIGHT_STR L"\x00a9 [email protected]_YEAR@ Robert Lipe"
#else
#define VERSION "@GB.MAJOR@[email protected]@[email protected]@@GB.PACKAGE_RELEASE@"
constexpr char kVersionSHA[] = "@GB.SHA@";
#define WEB_DOC_DIR "https://www.gpsbabel.org/htmldoc-@DOCVERSION@"
#endif