kicad-source/include/build_version.h
raburton 46f931b6ae allow build version to be set, while preserving program version
useful for creating a config.h via an extraction script that creates a source tar bundle
2008-08-29 14:06:19 +00:00

30 lines
543 B
C

/* Date for kicad build version */
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION
COMMON_GLOBL wxString g_BuildVersion
#ifdef EDA_BASE
# ifdef HAVE_SVN_VERSION
# include "config.h"
(wxT(KICAD_SVN_VERSION))
# else
(wxT("(20080825)"))
# endif
#endif
;
COMMON_GLOBL wxString g_BuildAboutVersion
#ifdef EDA_BASE
# if defined(HAVE_SVN_VERSION) || defined(HAVE_SVN_REVISION)
# include "config.h"
(wxT(KICAD_ABOUT_VERSION))
# else
(wxT("(20080811.r1188)"))
# endif
#endif
;
#endif // KICAD_BUILD_VERSION