2014-10-19 20:20:16 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-01-16 08:10:23 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2016-08-27 15:08:07 +00:00
|
|
|
* Copyright (C) 2015-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-19 20:20:16 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2015-11-24 10:05:34 +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
|
|
|
|
2015-07-05 19:24:34 +00:00
|
|
|
// The include file version.h is always created even if the repo version cannot be
|
|
|
|
// determined. In this case KICAD_BUILD_VERSION will default to "no-bzr".
|
2015-11-24 10:05:34 +00:00
|
|
|
#include <kicad_build_version.h>
|
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
|
2015-07-05 19:24:34 +00:00
|
|
|
* Return the build version string.
|
2010-01-05 17:47:49 +00:00
|
|
|
*/
|
|
|
|
wxString GetBuildVersion()
|
|
|
|
{
|
2013-08-05 15:38:50 +00:00
|
|
|
wxString msg = wxString::Format(
|
2016-10-13 00:29:46 +00:00
|
|
|
wxT( "%s" ),
|
2016-11-24 17:37:34 +00:00
|
|
|
wxT( KICAD_VERSION_FULL )
|
2013-08-05 15:38:50 +00:00
|
|
|
);
|
|
|
|
|
2010-01-05 17:47:49 +00:00
|
|
|
return msg;
|
|
|
|
}
|