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
84a0e328
Commit
84a0e328
authored
Jan 05, 2010
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed build problem for specctra.cpp stand alone.
parent
1b6ad8c7
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
38 additions
and
29 deletions
+38
-29
CMakeLists.txt
common/CMakeLists.txt
+1
-0
about_kicad.cpp
common/about_kicad.cpp
+1
-21
common_plotGERBER_functions.cpp
common/common_plotGERBER_functions.cpp
+2
-0
worksheet.cpp
common/worksheet.cpp
+1
-0
cvframe.cpp
cvpcb/cvframe.cpp
+1
-0
cvpcb.cpp
cvpcb/cvpcb.cpp
+2
-0
init.cpp
cvpcb/init.cpp
+1
-0
savecmp.cpp
cvpcb/savecmp.cpp
+2
-0
backanno.cpp
eeschema/backanno.cpp
+2
-0
build_BOM.cpp
eeschema/build_BOM.cpp
+2
-0
eeredraw.cpp
eeschema/eeredraw.cpp
+1
-0
netform.cpp
eeschema/netform.cpp
+1
-0
gerbview.cpp
gerbview/gerbview.cpp
+2
-0
build_version.h
include/build_version.h
+3
-3
common.h
include/common.h
+0
-1
kicad.cpp
kicad/kicad.cpp
+2
-0
prjconfig.cpp
kicad/prjconfig.cpp
+2
-0
export_gencad.cpp
pcbnew/export_gencad.cpp
+2
-0
gen_modules_placefile.cpp
pcbnew/gen_modules_placefile.cpp
+2
-0
gendrill.cpp
pcbnew/gendrill.cpp
+2
-0
ioascii.cpp
pcbnew/ioascii.cpp
+2
-0
pcbnew.cpp
pcbnew/pcbnew.cpp
+4
-4
No files found.
common/CMakeLists.txt
View file @
84a0e328
...
...
@@ -12,6 +12,7 @@ set(COMMON_SRCS
basicframe.cpp
bezier_curves.cpp
block_commande.cpp
build_version.cpp
class_marker_base.cpp
class_plotter.cpp
class_undoredo_container.cpp
...
...
common/about_kicad.cpp
View file @
84a0e328
...
...
@@ -7,29 +7,9 @@
#include "common.h"
#include "appl_wxstruct.h"
#include "build_version.h"
#ifdef HAVE_SVN_VERSION
#include "version.h" // define the KICAD_BUILD_VERSION
#endif
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-01-04)"
#endif
#define VERSION_STABILITY "unstable"
/** Function GetBuildVersion()
* Return the build date and version
*/
wxString
GetBuildVersion
()
{
wxString
msg
;
msg
.
Printf
(
wxT
(
"%s-%s"
),
wxT
(
KICAD_BUILD_VERSION
),
wxT
(
VERSION_STABILITY
));
return
msg
;
}
/**********************************/
wxString
SetMsg
(
const
wxString
&
msg
)
/**********************************/
...
...
common/common_plotGERBER_functions.cpp
View file @
84a0e328
...
...
@@ -12,6 +12,8 @@
#include "macros.h"
#include "kicad_string.h"
#include "build_version.h"
/** function set_viewport
* Set the plot offset for the current plotting
...
...
common/worksheet.cpp
View file @
84a0e328
...
...
@@ -14,6 +14,7 @@
#include "appl_wxstruct.h"
#include "worksheet.h"
#include "build_version.h"
/* Must be defined in main applications: */
...
...
cvpcb/cvframe.cpp
View file @
84a0e328
...
...
@@ -16,6 +16,7 @@
#include "cvstruct.h"
#include "dialog_cvpcb_config.h"
#include "build_version.h"
#define FRAME_MIN_SIZE_X 450
#define FRAME_MIN_SIZE_Y 300
...
...
cvpcb/cvpcb.cpp
View file @
84a0e328
...
...
@@ -15,6 +15,8 @@
#include "protos.h"
#include "cvstruct.h"
#include "build_version.h"
#include <wx/snglinst.h>
...
...
cvpcb/init.cpp
View file @
84a0e328
...
...
@@ -13,6 +13,7 @@
#include "protos.h"
#include "cvstruct.h"
#include "build_version.h"
/*
* Set the module to the selected component
...
...
cvpcb/savecmp.cpp
View file @
84a0e328
...
...
@@ -15,6 +15,8 @@
#include "protos.h"
#include "cvstruct.h"
#include "build_version.h"
/* File header. */
char
EnteteCmpMod
[]
=
{
"Cmp-Mod V01"
};
...
...
eeschema/backanno.cpp
View file @
84a0e328
...
...
@@ -13,6 +13,8 @@
#include "general.h"
#include "build_version.h"
/** function FillFootprintFieldForAllInstancesofComponent
* Search for component "aReference", and place a Footprint in Footprint field
...
...
eeschema/build_BOM.cpp
View file @
84a0e328
...
...
@@ -21,6 +21,8 @@
#include "netlist.h"
#include "protos.h"
#include "build_version.h"
#include "dialog_build_BOM.h"
...
...
eeschema/eeredraw.cpp
View file @
84a0e328
...
...
@@ -14,6 +14,7 @@
#include "protos.h"
#include "class_library.h"
#include "build_version.h"
static
EDA_BaseStruct
*
HighLightStruct
=
NULL
;
...
...
eeschema/netform.cpp
View file @
84a0e328
...
...
@@ -16,6 +16,7 @@
#include "protos.h"
#include "class_library.h"
#include "build_version.h"
/**
* @bug - Every place in this file where fprintf() is used and the return
...
...
gerbview/gerbview.cpp
View file @
84a0e328
...
...
@@ -17,6 +17,8 @@
#include "zones.h"
#include "class_board_design_settings.h"
#include "build_version.h"
#include <wx/file.h>
#include <wx/snglinst.h>
...
...
include/build_version.h
View file @
84a0e328
/* Date for kicad build version */
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION
#ifndef KICAD_BUILD_VERSION
_H
#define KICAD_BUILD_VERSION
_H
/** Function GetBuildVersion()
* Return the build date and version
*/
wxString
GetBuildVersion
();
#endif // KICAD_BUILD_VERSION
#endif // KICAD_BUILD_VERSION
_H
include/common.h
View file @
84a0e328
...
...
@@ -266,7 +266,6 @@ void InitKiCadAbout( wxAboutDialogInfo& info );
/**************/
/* common.cpp */
/**************/
wxString
GetBuildVersion
();
/* Return the build date */
/**
* function Affiche_1_Parametre
...
...
kicad/kicad.cpp
View file @
84a0e328
...
...
@@ -26,6 +26,8 @@
#include "kicad.h"
#include "macros.h"
#include "build_version.h"
#ifdef KICAD_PYTHON
#include <pyhandler.h>
using
namespace
boost
::
python
;
...
...
kicad/prjconfig.cpp
View file @
84a0e328
...
...
@@ -15,6 +15,8 @@
#include "prjconfig.h"
#include "kicad.h"
#include "build_version.h"
static
const
wxString
GeneralGroupName
(
wxT
(
"/general"
)
);
/* Kicad project file entry names. */
...
...
pcbnew/export_gencad.cpp
View file @
84a0e328
...
...
@@ -13,6 +13,8 @@
#include "wxPcbStruct.h"
#include "trigo.h"
#include "build_version.h"
bool
CreateHeaderInfoData
(
FILE
*
file
,
WinEDA_PcbFrame
*
frame
);
static
void
CreateTracksInfoData
(
FILE
*
file
,
BOARD
*
pcb
);
static
void
CreateBoardSection
(
FILE
*
file
,
BOARD
*
pcb
);
...
...
pcbnew/gen_modules_placefile.cpp
View file @
84a0e328
...
...
@@ -16,6 +16,8 @@
#include "trigo.h"
#include "appl_wxstruct.h"
#include "build_version.h"
class
LIST_MOD
/* Can list the elements of useful modules. */
{
public
:
...
...
pcbnew/gendrill.cpp
View file @
84a0e328
...
...
@@ -22,6 +22,8 @@
#include "gendrill.h"
#include "build_version.h"
const
wxString
DrillFileExtension
(
wxT
(
"drl"
)
);
const
wxString
DrillFileWildcard
(
_
(
"Drill files (*.drl)|*.drl"
)
);
...
...
pcbnew/ioascii.cpp
View file @
84a0e328
...
...
@@ -21,6 +21,8 @@
#include "cvpcb.h"
#endif
#include "build_version.h"
#include "pcbnew_id.h"
/* ASCII format of structures:
...
...
pcbnew/pcbnew.cpp
View file @
84a0e328
...
...
@@ -19,13 +19,13 @@
#include "cell.h"
#include "worksheet.h"
#include "zones.h"
#include "protos.h"
#include "drag.h"
#include "eda_dde.h"
#include "build_version.h"
#include "protos.h"
bool
Drc_On
=
true
;
bool
g_AutoDeleteOldTrack
=
true
;
bool
g_No_Via_Route
;
...
...
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