Files
znc/include/znc/version.h
T
2013-11-04 16:07:13 +04:00

14 lines
369 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 2
// This one is for display purpose
#define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)
// You can add -DVERSION_EXTRA="stuff" to your CXXFLAGS!
extern const char* ZNC_VERSION_EXTRA;
#endif