Files
sqlitebrowser/src/version.h
2015-06-14 12:13:37 +02:00

11 lines
253 B
C

#ifndef GEN_VERSION_H
#define GEN_VERSION_H
#define MAJOR_VERSION 3
#define MINOR_VERSION 7
#define PATCH_VERSION 0
#define str(s) #s
#define xstr(s) str(s)
#define APP_VERSION xstr(MAJOR_VERSION) "." xstr(MINOR_VERSION) "." xstr(PATCH_VERSION)
#endif