mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
[make] USE_GIT_VERSION option to use commit info in version (closes #1702)
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
ae0cf2e831
commit
b0f043ec86
3 changed files with 23 additions and 7 deletions
|
@ -19,7 +19,12 @@
|
|||
#define I2PD_VERSION_MINOR 39
|
||||
#define I2PD_VERSION_MICRO 0
|
||||
#define I2PD_VERSION_PATCH 0
|
||||
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
|
||||
#ifdef GITVER
|
||||
#define I2PD_VERSION GITVER
|
||||
#else
|
||||
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
|
||||
#endif
|
||||
|
||||
#define VERSION I2PD_VERSION
|
||||
|
||||
#ifdef MESHNET
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue