Cleanup: Move Eagle files into plugins folder
This commit is contained in:
parent
63a0f537d8
commit
1416280662
|
@ -281,6 +281,10 @@ set( PLUGINS_CADSTAR_SRCS
|
||||||
plugins/cadstar/cadstar_archive_parser.cpp
|
plugins/cadstar/cadstar_archive_parser.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set( PLUGINS_EAGLE_SRCS
|
||||||
|
plugins/eagle/eagle_parser.cpp
|
||||||
|
)
|
||||||
|
|
||||||
set( COMMON_SRCS
|
set( COMMON_SRCS
|
||||||
${LIB_KICAD_SRCS}
|
${LIB_KICAD_SRCS}
|
||||||
${COMMON_ABOUT_DLG_SRCS}
|
${COMMON_ABOUT_DLG_SRCS}
|
||||||
|
@ -291,6 +295,7 @@ set( COMMON_SRCS
|
||||||
${PLOTTERS_CONTROL_SRCS}
|
${PLOTTERS_CONTROL_SRCS}
|
||||||
${PLUGINS_ALTIUM_SRCS}
|
${PLUGINS_ALTIUM_SRCS}
|
||||||
${PLUGINS_CADSTAR_SRCS}
|
${PLUGINS_CADSTAR_SRCS}
|
||||||
|
${PLUGINS_EAGLE_SRCS}
|
||||||
advanced_config.cpp
|
advanced_config.cpp
|
||||||
array_axis.cpp
|
array_axis.cpp
|
||||||
array_options.cpp
|
array_options.cpp
|
||||||
|
@ -309,7 +314,6 @@ set( COMMON_SRCS
|
||||||
dialog_shim.cpp
|
dialog_shim.cpp
|
||||||
gr_text.cpp
|
gr_text.cpp
|
||||||
dsnlexer.cpp
|
dsnlexer.cpp
|
||||||
eagle_parser.cpp
|
|
||||||
eda_base_frame.cpp
|
eda_base_frame.cpp
|
||||||
eda_dde.cpp
|
eda_dde.cpp
|
||||||
eda_doc.cpp
|
eda_doc.cpp
|
||||||
|
@ -517,7 +521,7 @@ set( PCB_COMMON_SRCS
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule_condition.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule_condition.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule_parser.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/drc/drc_rule_parser.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/eagle_plugin.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/plugins/eagle/eagle_plugin.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/footprint_editor_settings.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/footprint_editor_settings.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/gpcb_plugin.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/gpcb_plugin.cpp
|
||||||
${CMAKE_SOURCE_DIR}/pcbnew/io_mgr.cpp
|
${CMAKE_SOURCE_DIR}/pcbnew/io_mgr.cpp
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <eagle_parser.h>
|
#include <plugins/eagle/eagle_parser.h>
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <sstream>
|
#include <sstream>
|
|
@ -207,7 +207,7 @@ set( EESCHEMA_SRCS
|
||||||
ee_collectors.cpp
|
ee_collectors.cpp
|
||||||
sch_component.cpp
|
sch_component.cpp
|
||||||
sch_connection.cpp
|
sch_connection.cpp
|
||||||
sch_eagle_plugin.cpp
|
sch_plugins/eagle/sch_eagle_plugin.cpp
|
||||||
sch_field.cpp
|
sch_field.cpp
|
||||||
sch_io_mgr.cpp
|
sch_io_mgr.cpp
|
||||||
sch_item.cpp
|
sch_item.cpp
|
||||||
|
|
|
@ -42,7 +42,6 @@
|
||||||
#include <reporter.h>
|
#include <reporter.h>
|
||||||
#include <richio.h>
|
#include <richio.h>
|
||||||
#include <sch_component.h>
|
#include <sch_component.h>
|
||||||
#include <sch_eagle_plugin.h>
|
|
||||||
#include <sch_edit_frame.h>
|
#include <sch_edit_frame.h>
|
||||||
#include <sch_legacy_plugin.h>
|
#include <sch_legacy_plugin.h>
|
||||||
#include <sch_sheet.h>
|
#include <sch_sheet.h>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include <sch_io_mgr.h>
|
#include <sch_io_mgr.h>
|
||||||
#include <sch_legacy_plugin.h>
|
#include <sch_legacy_plugin.h>
|
||||||
#include <sch_eagle_plugin.h>
|
#include <sch_plugins/eagle/sch_eagle_plugin.h>
|
||||||
#include <sch_sexpr_plugin.h>
|
#include <sch_sexpr_plugin.h>
|
||||||
|
|
||||||
#include <sch_plugins/altium/sch_altium_plugin.h>
|
#include <sch_plugins/altium/sch_altium_plugin.h>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sch_eagle_plugin.h>
|
#include <sch_plugins/eagle/sch_eagle_plugin.h>
|
||||||
|
|
||||||
#include <kiway.h>
|
#include <kiway.h>
|
||||||
#include <properties.h>
|
#include <properties.h>
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
#include <class_libentry.h>
|
#include <class_libentry.h>
|
||||||
#include <class_library.h>
|
#include <class_library.h>
|
||||||
#include <eagle_parser.h>
|
#include <plugins/eagle/eagle_parser.h>
|
||||||
#include <gr_text.h>
|
#include <gr_text.h>
|
||||||
#include <lib_arc.h>
|
#include <lib_arc.h>
|
||||||
#include <lib_circle.h>
|
#include <lib_circle.h>
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
#include <sch_line.h>
|
#include <sch_line.h>
|
||||||
#include <sch_io_mgr.h>
|
#include <sch_io_mgr.h>
|
||||||
#include <eagle_parser.h>
|
#include <plugins/eagle/eagle_parser.h>
|
||||||
#include <lib_item.h>
|
#include <lib_item.h>
|
||||||
#include <geometry/seg.h>
|
#include <geometry/seg.h>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include <wx/uri.h>
|
#include <wx/uri.h>
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <eagle_plugin.h>
|
#include <plugins/eagle/eagle_plugin.h>
|
||||||
#include <gpcb_plugin.h>
|
#include <gpcb_plugin.h>
|
||||||
#include <io_mgr.h>
|
#include <io_mgr.h>
|
||||||
#include <kicad_plugin.h>
|
#include <kicad_plugin.h>
|
||||||
|
|
|
@ -71,7 +71,7 @@ Load() TODO's
|
||||||
#include <pcb_text.h>
|
#include <pcb_text.h>
|
||||||
#include <class_dimension.h>
|
#include <class_dimension.h>
|
||||||
|
|
||||||
#include <eagle_plugin.h>
|
#include <plugins/eagle/eagle_plugin.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
#include <io_mgr.h>
|
#include <io_mgr.h>
|
||||||
#include <layers_id_colors_and_visibility.h>
|
#include <layers_id_colors_and_visibility.h>
|
||||||
#include <eagle_parser.h>
|
#include <plugins/eagle/eagle_parser.h>
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <wx/xml/xml.h>
|
#include <wx/xml/xml.h>
|
Loading…
Reference in New Issue