Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
24a07f17
Commit
24a07f17
authored
Jan 05, 2010
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit missing file
parent
84a0e328
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
build_version.cpp
common/build_version.cpp
+23
-0
No files found.
common/build_version.cpp
0 → 100644
View file @
24a07f17
/* 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 "(2010-01-05)"
#endif
#define VERSION_STABILITY "unstable"
/** Function GetBuildVersion()
* Return the build date and version
*/
wxString
GetBuildVersion
()
{
static
wxString
msg
;
msg
.
Printf
(
wxT
(
"%s-%s"
),
wxT
(
KICAD_BUILD_VERSION
),
wxT
(
VERSION_STABILITY
));
return
msg
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment