2011-09-30 18:15:37 +00:00
|
|
|
/* Date for KiCad build version */
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
2010-01-05 17:47:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SVN_VERSION
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <version.h> // define the KICAD_BUILD_VERSION
|
2010-01-05 17:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef KICAD_BUILD_VERSION
|
2011-09-07 10:38:11 +00:00
|
|
|
#if defined KICAD_GOST
|
2013-03-13 19:06:46 +00:00
|
|
|
# define KICAD_BUILD_VERSION "(2013-mar-13 GOST)"
|
2011-09-07 10:38:11 +00:00
|
|
|
#else
|
2013-03-13 19:06:46 +00:00
|
|
|
# define KICAD_BUILD_VERSION "(2013-mar-13)"
|
2011-09-07 10:38:11 +00:00
|
|
|
#endif
|
2010-01-05 17:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
2010-09-20 16:26:48 +00:00
|
|
|
|
2011-04-09 18:53:39 +00:00
|
|
|
#if defined KICAD_TESTING_VERSION
|
|
|
|
# define VERSION_STABILITY "testing"
|
|
|
|
#elif defined KICAD_STABLE_VERSION
|
|
|
|
# define VERSION_STABILITY "stable"
|
|
|
|
#else
|
|
|
|
# define VERSION_STABILITY "unknown"
|
|
|
|
# warning "unknown version stability"
|
|
|
|
# warning "please: when running CMAKE, add -DKICAD_TESTING_VERSION=ON"
|
|
|
|
# warning "or -DKICAD_STABLE_VERSION=ON option"
|
2011-03-18 14:33:55 +00:00
|
|
|
#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;
|
|
|
|
}
|