You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
618 B
32 lines
618 B
/* 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 "(2013-jul-14)"
|
|
#endif
|
|
|
|
|
|
#if defined KICAD_STABLE_VERSION
|
|
# define VERSION_STABILITY "stable"
|
|
#else
|
|
# define VERSION_STABILITY "product"
|
|
#endif
|
|
|
|
/**
|
|
* Function GetBuildVersion
|
|
* Return the build date and version
|
|
*/
|
|
wxString GetBuildVersion()
|
|
{
|
|
wxString msg = wxString::Format(
|
|
wxT( "%s-%s" ),
|
|
wxT( KICAD_BUILD_VERSION ),
|
|
wxT( VERSION_STABILITY )
|
|
);
|
|
|
|
return msg;
|
|
}
|