kicad/common/build_version.cpp

33 lines
618 B
C++
Raw Normal View History

/* Date for KiCad build version */
#include <fctsys.h>
2010-01-05 17:47:49 +00:00
#ifdef HAVE_SVN_VERSION
#include <version.h> // define the KICAD_BUILD_VERSION
2010-01-05 17:47:49 +00:00
#endif
#ifndef KICAD_BUILD_VERSION
# define KICAD_BUILD_VERSION "(2013-jul-14)"
2010-01-05 17:47:49 +00:00
#endif
#if defined KICAD_STABLE_VERSION
# define VERSION_STABILITY "stable"
#else
# define VERSION_STABILITY "product"
#endif
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()
{
wxString msg = wxString::Format(
wxT( "%s-%s" ),
wxT( KICAD_BUILD_VERSION ),
wxT( VERSION_STABILITY )
);
2010-01-05 17:47:49 +00:00
return msg;
}