diff --git a/eeschema/CMakeLists.txt b/eeschema/CMakeLists.txt index 56e89c8aa9..74f0c7ea29 100644 --- a/eeschema/CMakeLists.txt +++ b/eeschema/CMakeLists.txt @@ -194,11 +194,11 @@ set( EESCHEMA_SRCS netlist_generator.cpp pin_number.cpp pin_type.cpp - plot_schematic_DXF.cpp - plot_schematic_HPGL.cpp - plot_schematic_PDF.cpp - plot_schematic_PS.cpp - plot_schematic_SVG.cpp + plotters/plot_schematic_DXF.cpp + plotters/plot_schematic_HPGL.cpp + plotters/plot_schematic_PDF.cpp + plotters/plot_schematic_PS.cpp + plotters/plot_schematic_SVG.cpp sch_draw_panel.cpp project_rescue.cpp sch_base_frame.cpp diff --git a/eeschema/plot_schematic_DXF.cpp b/eeschema/plotters/plot_schematic_DXF.cpp similarity index 100% rename from eeschema/plot_schematic_DXF.cpp rename to eeschema/plotters/plot_schematic_DXF.cpp diff --git a/eeschema/plot_schematic_HPGL.cpp b/eeschema/plotters/plot_schematic_HPGL.cpp similarity index 100% rename from eeschema/plot_schematic_HPGL.cpp rename to eeschema/plotters/plot_schematic_HPGL.cpp diff --git a/eeschema/plot_schematic_PDF.cpp b/eeschema/plotters/plot_schematic_PDF.cpp similarity index 100% rename from eeschema/plot_schematic_PDF.cpp rename to eeschema/plotters/plot_schematic_PDF.cpp diff --git a/eeschema/plot_schematic_PS.cpp b/eeschema/plotters/plot_schematic_PS.cpp similarity index 100% rename from eeschema/plot_schematic_PS.cpp rename to eeschema/plotters/plot_schematic_PS.cpp diff --git a/eeschema/plot_schematic_SVG.cpp b/eeschema/plotters/plot_schematic_SVG.cpp similarity index 100% rename from eeschema/plot_schematic_SVG.cpp rename to eeschema/plotters/plot_schematic_SVG.cpp