Browse Source
CADSTAR PCB Archive Importer: Move code into common/plugins and pcbnew/plugins folders
pull/16/head
CADSTAR PCB Archive Importer: Move code into common/plugins and pcbnew/plugins folders
pull/16/head
committed by
Seth Hillbrand
21 changed files with 68 additions and 70 deletions
-
6common/CMakeLists.txt
-
42common/plugins/cadstar/cadstar_archive_parser.cpp
-
15common/plugins/cadstar/cadstar_archive_parser.h
-
1cvpcb/CMakeLists.txt
-
5pcbnew/CMakeLists.txt
-
14pcbnew/cadstar2kicadpcb_plugin/CMakeLists.txt
-
6pcbnew/files.cpp
-
4pcbnew/io_mgr.cpp
-
2pcbnew/io_mgr.h
-
13pcbnew/plugins/cadstar/CMakeLists.txt
-
6pcbnew/plugins/cadstar/cadstar_pcb_archive_loader.cpp
-
11pcbnew/plugins/cadstar/cadstar_pcb_archive_loader.h
-
0pcbnew/plugins/cadstar/cadstar_pcb_archive_parser.cpp
-
6pcbnew/plugins/cadstar/cadstar_pcb_archive_parser.h
-
2pcbnew/plugins/cadstar/cadstar_pcb_archive_plugin.cpp
-
0pcbnew/plugins/cadstar/cadstar_pcb_archive_plugin.h
-
1qa/drc_proto/CMakeLists.txt
-
1qa/gal/gal_pixel_alignment/CMakeLists.txt
-
1qa/libeval_compiler/CMakeLists.txt
-
1qa/pcbnew/CMakeLists.txt
-
1qa/pcbnew_tools/CMakeLists.txt
@ -1,14 +0,0 @@ |
|||
|
|||
# Sources for the pcbnew PLUGIN called CADSTAR_ARCHIVE_PLUGIN |
|||
include_directories( . ) |
|||
|
|||
set( CADSTAR2PCBNEW_SRCS |
|||
cadstar_pcb_archive_plugin.cpp |
|||
cadstar_pcb_archive_parser.cpp |
|||
cadstar_archive_common.cpp |
|||
cadstar_pcb.cpp |
|||
) |
|||
|
|||
add_library( cadstar2kicadpcb STATIC ${CADSTAR2PCBNEW_SRCS} ) |
|||
|
|||
target_link_libraries( cadstar2kicadpcb pcbcommon ) |
@ -0,0 +1,13 @@ |
|||
|
|||
# Sources for the pcbnew PLUGIN called CADSTAR_PCB_ARCHIVE_PLUGIN |
|||
include_directories( . ) |
|||
|
|||
set( CADSTAR2PCBNEW_SRCS |
|||
cadstar_pcb_archive_plugin.cpp |
|||
cadstar_pcb_archive_parser.cpp |
|||
cadstar_pcb_archive_loader.cpp |
|||
) |
|||
|
|||
add_library( cadstar2pcbnew STATIC ${CADSTAR2PCBNEW_SRCS} ) |
|||
|
|||
target_link_libraries( cadstar2pcbnew pcbcommon ) |
Write
Preview
Loading…
Cancel
Save
Reference in new issue