kicad/include/build_version.h

32 lines
644 B
C
Raw Normal View History

2007-05-06 16:03:28 +00:00
/* Date for kicad build version */
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION
2009-02-24 13:55:13 +00:00
#define BUILD_VERSION wxT("(20090216-RC3)")
2007-05-06 16:03:28 +00:00
COMMON_GLOBL wxString g_BuildVersion
#ifdef EDA_BASE
# ifdef HAVE_SVN_VERSION
# include "config.h"
(wxT(KICAD_SVN_VERSION))
# else
2009-02-24 13:55:13 +00:00
(BUILD_VERSION) /* main program version */
# endif
2007-05-06 16:03:28 +00:00
#endif
;
2008-08-15 16:38:05 +00:00
COMMON_GLOBL wxString g_BuildAboutVersion
#ifdef EDA_BASE
# if defined(HAVE_SVN_VERSION) || defined(HAVE_SVN_REVISION)
2008-08-15 16:38:05 +00:00
# include "config.h"
(wxT(KICAD_ABOUT_VERSION))
# else
2009-02-24 13:55:13 +00:00
(BUILD_VERSION) /* svn date & rev (normally overridden) */
2008-08-15 16:38:05 +00:00
# endif
#endif
;
2007-05-06 16:03:28 +00:00
#endif // KICAD_BUILD_VERSION