2010-01-05 17:47:49 +00:00
|
|
|
/* Date for kicad build version */
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SVN_VERSION
|
|
|
|
#include "version.h" // define the KICAD_BUILD_VERSION
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef KICAD_BUILD_VERSION
|
2011-03-30 20:14:44 +00:00
|
|
|
#define KICAD_BUILD_VERSION "(2011-03-30)"
|
2010-01-05 17:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-18 14:33:55 +00:00
|
|
|
// uncomment this line only when creating a stable version
|
2010-09-20 16:26:48 +00:00
|
|
|
//#define VERSION_STABILITY "stable"
|
|
|
|
|
2011-03-18 14:33:55 +00:00
|
|
|
#ifndef VERSION_STABILITY
|
|
|
|
#define VERSION_STABILITY "testing"
|
|
|
|
#endif
|
2010-01-05 17:47:49 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
2010-11-12 16:59:16 +00:00
|
|
|
* Function GetBuildVersion
|
2010-01-05 17:47:49 +00:00
|
|
|
* Return the build date and version
|
|
|
|
*/
|
|
|
|
wxString GetBuildVersion()
|
|
|
|
{
|
|
|
|
static wxString msg;
|
|
|
|
msg.Printf( wxT("%s-%s"),
|
2010-09-20 16:26:48 +00:00
|
|
|
wxT( KICAD_BUILD_VERSION ), wxT( VERSION_STABILITY ));
|
2010-01-05 17:47:49 +00:00
|
|
|
return msg;
|
|
|
|
}
|