/* Date for KiCad build version */ #include #ifdef HAVE_SVN_VERSION #include // define the KICAD_BUILD_VERSION #endif #ifndef KICAD_BUILD_VERSION # define KICAD_BUILD_VERSION "(2014-jan-25)" #endif /** * Function GetBuildVersion * Return the build date and version */ wxString GetBuildVersion() { wxString msg = wxString::Format( wxT( "%s-%s" ), wxT( KICAD_BUILD_VERSION ), wxT( KICAD_REPO_NAME ) ); return msg; }