Commit 08e5fec3 authored by dickelbeck's avatar dickelbeck

set eol style

parent 3be44e81
/* Date for kicad build version */ /* Date for kicad build version */
#include "fctsys.h" #include "fctsys.h"
#ifdef HAVE_SVN_VERSION #ifdef HAVE_SVN_VERSION
#include "version.h" // define the KICAD_BUILD_VERSION #include "version.h" // define the KICAD_BUILD_VERSION
#endif #endif
#ifndef KICAD_BUILD_VERSION #ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-01-05)" #define KICAD_BUILD_VERSION "(2010-01-05)"
#endif #endif
#define VERSION_STABILITY "unstable" #define VERSION_STABILITY "unstable"
/** Function GetBuildVersion() /** Function GetBuildVersion()
* Return the build date and version * Return the build date and version
*/ */
wxString GetBuildVersion() wxString GetBuildVersion()
{ {
static wxString msg; static wxString msg;
msg.Printf( wxT("%s-%s"), msg.Printf( wxT("%s-%s"),
wxT( KICAD_BUILD_VERSION ), wxT(VERSION_STABILITY)); wxT( KICAD_BUILD_VERSION ), wxT(VERSION_STABILITY));
return msg; return msg;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment