2011-09-30 14:15:37 -04:00
|
|
|
/* Date for KiCad build version */
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <fctsys.h>
|
2010-01-05 17:47:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SVN_VERSION
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <version.h> // define the KICAD_BUILD_VERSION
|
2010-01-05 17:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef KICAD_BUILD_VERSION
|
2013-07-19 20:27:22 +02:00
|
|
|
# define KICAD_BUILD_VERSION "(2013-jul-14)"
|
2010-01-05 17:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
2010-11-12 10:36:43 -06:00
|
|
|
/**
|
2010-11-12 10:59:16 -06:00
|
|
|
* Function GetBuildVersion
|
2010-01-05 17:47:49 +00:00
|
|
|
* Return the build date and version
|
|
|
|
*/
|
|
|
|
wxString GetBuildVersion()
|
|
|
|
{
|
2013-08-05 10:38:50 -05:00
|
|
|
wxString msg = wxString::Format(
|
|
|
|
wxT( "%s-%s" ),
|
2014-01-07 19:52:19 -06:00
|
|
|
wxT( KICAD_BUILD_VERSION )
|
2013-08-05 10:38:50 -05:00
|
|
|
);
|
|
|
|
|
2010-01-05 17:47:49 +00:00
|
|
|
return msg;
|
|
|
|
}
|