kicad/common/build_version.cpp

27 lines
558 B
C++
Raw Normal View History

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
#define KICAD_BUILD_VERSION "(2011-02-22 BZR 2835)"
2010-01-05 17:47:49 +00:00
#endif
//#define VERSION_STABILITY "stable"
#define VERSION_STABILITY "testing"
2010-01-05 17:47:49 +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"),
wxT( KICAD_BUILD_VERSION ), wxT( VERSION_STABILITY ));
2010-01-05 17:47:49 +00:00
return msg;
}