Files
znc/include/znc/version.h
T
Alexey Sokolov c40d4a4efb ZNC 1.6.5-rc1
2017-03-03 23:28:35 +00:00

20 lines
510 B
C

#ifndef _VERSION_H
#define _VERSION_H
// The following defines are for #if comparison (preprocessor only likes ints)
#define VERSION_MAJOR 1
#define VERSION_MINOR 6
#define VERSION_PATCH 5
// This one is for display purpose
#define VERSION_STR "1.6.5"
// This one is for ZNCModInfo
#define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)
// You can add -DVERSION_EXTRA="stuff" to your CXXFLAGS!
#ifndef VERSION_EXTRA
# define VERSION_EXTRA ""
#endif
extern const char* ZNC_VERSION_EXTRA;
#endif