18 lines
314 B
C
18 lines
314 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("(20080530-r1107)"))
|
|
# endif
|
|
#endif
|
|
;
|
|
|
|
#endif // KICAD_BUILD_VERSION
|