mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 07:30:33 +00:00
45eb0052b1
Move all version defines into r_version.h and handle it from meson too - R2_VERSION_MAJOR - R2_VERSION_MINOR - R2_VERSION_PATCH - R2_VERSION_NUMBER
14 lines
439 B
C
14 lines
439 B
C
#ifndef R_VERSION_H
|
|
#define R_VERSION_H 1
|
|
#define R_MESON_VERSION "@MESON_VERSION@"
|
|
#define R2_VERSION_MAJOR @R2_VERSION_MAJOR@
|
|
#define R2_VERSION_MINOR @R2_VERSION_MINOR@
|
|
#define R2_VERSION_PATCH @R2_VERSION_PATCH@
|
|
#define R2_VERSION_NUMBER @R2_VERSION_NUMBER@
|
|
#define R2_VERSION_COMMIT @VERSIONCOMMIT@
|
|
#define R2_VERSION "@R2_VERSION@"
|
|
#define R2_GITTAP "@R2_GITTAP@"
|
|
#define R2_GITTIP "@R2_GITTIP@"
|
|
#define R2_BIRTH "@R2_BIRTH@"
|
|
#endif
|