2013-05-26 04:36:44 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
# Sources for the pcbnew PLUGIN called PCAD_PLUGIN
|
|
|
|
|
|
|
|
# This CMakeLists.txt is included from pcbnew, so we are inheriting its include_directories(),
|
|
|
|
# simply add the current source dir to inherited include_directories() for sources in here only.
|
|
|
|
include_directories( . )
|
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCAD2PCBNEW_SRCS
|
2013-05-26 04:36:44 +00:00
|
|
|
pcad2kicad_common.cpp
|
|
|
|
pcad_plugin.cpp
|
|
|
|
pcb.cpp
|
|
|
|
pcb_arc.cpp
|
|
|
|
pcb_component.cpp
|
|
|
|
pcb_copper_pour.cpp
|
|
|
|
pcb_cutout.cpp
|
|
|
|
pcb_keepout.cpp
|
|
|
|
pcb_line.cpp
|
2020-11-14 21:21:54 +00:00
|
|
|
pcb_footprint.cpp
|
2013-05-26 04:36:44 +00:00
|
|
|
pcb_net.cpp
|
|
|
|
pcb_pad.cpp
|
|
|
|
pcb_pad_shape.cpp
|
|
|
|
pcb_plane.cpp
|
|
|
|
pcb_polygon.cpp
|
|
|
|
pcb_text.cpp
|
|
|
|
pcb_via.cpp
|
|
|
|
pcb_via_shape.cpp
|
|
|
|
s_expr_loader.cpp
|
|
|
|
)
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
add_library( pcad2kicadpcb STATIC ${PCAD2PCBNEW_SRCS} )
|
2019-01-23 15:58:16 +00:00
|
|
|
|
|
|
|
target_link_libraries( pcad2kicadpcb pcbcommon )
|