From aa35045840b78d3f48212db45da59a2e5c69b223 Mon Sep 17 00:00:00 2001 From: saurabhb17 Date: Wed, 26 Feb 2020 15:57:49 +0530 Subject: Added main execs --- pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt (limited to 'pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt') diff --git a/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt b/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt new file mode 100644 index 0000000..11e60de --- /dev/null +++ b/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt @@ -0,0 +1,32 @@ + +# 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( . ) + + +set( PCAD2PCBNEW_SRCS + 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 + pcb_module.cpp + 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 + ) + +add_library( pcad2kicadpcb STATIC ${PCAD2PCBNEW_SRCS} ) +add_dependencies( pcad2kicadpcb pcbcommon ) -- cgit