iverilog/version_base.h

20 lines
496 B
C
Raw Normal View History

#ifndef VERSION
/*
* Edit this definition in version_base.in to define the base version
* number for the compiled result.
*/
2022-12-26 18:56:19 +01:00
# define VERSION_MAJOR 13
# define VERSION_MINOR 0
2015-08-15 22:42:57 +02:00
/*
* This will be appended to the version. Use this to mark development
* versions and the like.
*/
# define VERSION_EXTRA " (devel)"
# define VERSION_STRINGIFY(x) #x
2015-08-15 22:42:57 +02:00
# define VERSION_STR(a,b,extra) VERSION_STRINGIFY(a.b) extra
#define VERSION VERSION_STR(VERSION_MAJOR,VERSION_MINOR,VERSION_EXTRA)
#endif