You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
625 B

/* 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("(20081214-unstable)")) /* main program version */
# 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("(20081214-unstable)")) /* svn date & rev (normally overridden) */
# endif
#endif
;
#endif // KICAD_BUILD_VERSION