iverilog/version_base.h

20 lines
497 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.
*/
2015-08-15 22:42:57 +02:00
# define VERSION_MAJOR 10
2019-08-15 17:31:11 +02:00
# define VERSION_MINOR 3
2015-08-15 22:42:57 +02:00
/*
* This will be appended to the version. Use this to mark development
* versions and the like.
*/
2015-08-15 23:26:33 +02:00
# define VERSION_EXTRA " (stable)"
# 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