mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
#define NAME "IPhreeqc"
|
|
#define VER_MAJOR 3
|
|
#define VER_MINOR 0
|
|
#define VER_PATCH 0
|
|
#define VER_REVISION 0
|
|
#define GIT_COMMIT 0000000000000000000000000000000000000000
|
|
|
|
#define RELEASE_DATE "@RELEASE_DATE@"
|
|
|
|
#define APR_STRINGIFY(n) APR_STRINGIFY_HELPER(n)
|
|
#define APR_STRINGIFY_HELPER(n) #n
|
|
|
|
/** Version number */
|
|
#define VER_NUM APR_STRINGIFY(VER_MAJOR) \
|
|
"." APR_STRINGIFY(VER_MINOR) \
|
|
"." APR_STRINGIFY(VER_PATCH) \
|
|
"." APR_STRINGIFY(VER_REVISION)
|
|
|
|
|
|
|
|
#define PRODUCT_NAME NAME \
|
|
"-" APR_STRINGIFY(VER_MAJOR) \
|
|
"." APR_STRINGIFY(VER_MINOR)
|
|
|
|
#if defined(_WIN64)
|
|
#define VERSION_STRING APR_STRINGIFY(VER_MAJOR) \
|
|
"." APR_STRINGIFY(VER_MINOR) \
|
|
"." APR_STRINGIFY(VER_PATCH) \
|
|
"-" APR_STRINGIFY(VER_REVISION) \
|
|
"-x64"
|
|
#else
|
|
#define VERSION_STRING APR_STRINGIFY(VER_MAJOR) \
|
|
"." APR_STRINGIFY(VER_MINOR) \
|
|
"." APR_STRINGIFY(VER_PATCH) \
|
|
"-" APR_STRINGIFY(VER_REVISION)
|
|
#endif
|