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
b1ed22f7
Commit
b1ed22f7
authored
Jul 28, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor tweaks to debug statements and cmake
parent
1760a28e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
11 deletions
+8
-11
CMakeLists.txt
pcbnew/CMakeLists.txt
+7
-9
legacy_plugin.cpp
pcbnew/legacy_plugin.cpp
+1
-2
No files found.
pcbnew/CMakeLists.txt
View file @
b1ed22f7
...
...
@@ -267,23 +267,19 @@ if (KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES)
get_directory_property
(
DirDefs DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
COMPILE_DEFINITIONS
)
foreach
(
d
${
DirDefs
}
)
set
(
SWIG_FLAGS
${
SWIG_FLAGS
}
-D
${
d
}
)
set
(
SWIG_FLAGS
${
SWIG_FLAGS
}
-D
${
d
}
)
endforeach
()
# check if we have IO_MGR and KICAD_PLUGIN available
if
(
USE_NEW_PCBNEW_LOAD OR USE_NEW_PCBNEW_SAVE
)
set
(
SWIG_FLAGS
${
SWIG_FLAGS
}
-DBUILD_WITH_PLUGIN
)
endif
(
USE_NEW_PCBNEW_LOAD OR USE_NEW_PCBNEW_SAVE
)
if
(
USE_PCBNEW_NANOMETRES
)
set
(
SWIG_FLAGS
${
SWIG_FLAGS
}
-DUSE_PCBNEW_NANOMETRES
)
if
(
USE_PCBNEW_NANOMETRES
)
set
(
SWIG_FLAGS
${
SWIG_FLAGS
}
-DUSE_PCBNEW_NANOMETRES
)
endif
(
USE_PCBNEW_NANOMETRES
)
endif
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
if
(
KICAD_SCRIPTING
)
set
(
SWIG_OPTS -python -c++ -outdir
${
CMAKE_CURRENT_BINARY_DIR
}
${
SWIG_FLAGS
}
)
set
(
SWIG_OPTS -python -c++ -outdir
${
CMAKE_CURRENT_BINARY_DIR
}
${
SWIG_FLAGS
}
)
add_custom_command
(
OUTPUT
${
CMAKE_CURRENT_BINARY_DIR
}
/pcbnew_wrap.cxx
DEPENDS pcbcommon
...
...
@@ -316,6 +312,8 @@ endif()
if
(
KICAD_SCRIPTING_MODULES
)
#message( "building pcbnew scripting" )
set
(
CMAKE_SWIG_FLAGS
${
SWIG_FLAGS
}
)
set_source_files_properties
(
scripting/pcbnew.i PROPERTIES CPLUSPLUS ON
)
swig_add_module
(
pcbnew python scripting/pcbnew.i
${
PCBNEW_SCRIPTING_PYTHON_HELPERS
}
${
PCBNEW_SRCS
}
${
PCBNEW_COMMON_SRCS
}
)
...
...
pcbnew/legacy_plugin.cpp
View file @
b1ed22f7
...
...
@@ -4155,8 +4155,7 @@ void FPL_CACHE::Save()
abs_lib_name
.
MakeAbsolute
();
tempFileName
=
wxFileName
::
CreateTempFileName
(
abs_lib_name
.
GetFullPath
()
);
wxLogDebug
(
wxT
(
"tempFileName:'%s' m_lib_path:'%s'
\n
"
),
TO_UTF8
(
tempFileName
),
TO_UTF8
(
m_lib_path
)
);
//wxLogDebug( wxT( "tempFileName:'%s' m_lib_path:'%s'\n" ), TO_UTF8( tempFileName ), TO_UTF8( m_lib_path ) );
FILE
*
fp
=
wxFopen
(
tempFileName
,
wxT
(
"w"
)
);
if
(
!
fp
)
...
...
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