00001
00002
00003
00004
00005 #if !defined(_INCLUDED_SMD_VERSION_H_HEADER__)
00006 #define _INCLUDED_SMD_VERSION_H_HEADER__
00007
00008 #define SMD_VERSION_MAJOR 0
00009 #define SMD_VERSION_MINOR 2
00010 #define SMD_VERSION_PATCH 5
00011 #define SMD_VERSION_IS_DEV
00012
00013 #define SMD_VERSION_STRING \
00014 APR_STRINGIFY(SMD_VERSION_MAJOR) "." \
00015 APR_STRINGIFY(SMD_VERSION_MINOR) "." \
00016 APR_STRINGIFY(SMD_VERSION_PATCH) "-dev"
00017
00018 #define SMD_BUILD_DATE_STRING __DATE__ __TIME__
00019
00020 #endif