Move the cli definitions to kicad
This commit is contained in:
parent
8d44c770a8
commit
30211da69f
|
@ -287,12 +287,6 @@ set( COMMON_SRCS
|
||||||
${PLUGINS_CADSTAR_SRCS}
|
${PLUGINS_CADSTAR_SRCS}
|
||||||
${PLUGINS_EAGLE_SRCS}
|
${PLUGINS_EAGLE_SRCS}
|
||||||
${FONT_SRCS}
|
${FONT_SRCS}
|
||||||
cli/command_export_pcb_base.cpp
|
|
||||||
cli/command_export_pcb_dxf.cpp
|
|
||||||
cli/command_export_pcb_step.cpp
|
|
||||||
cli/command_export_pcb_svg.cpp
|
|
||||||
cli/command_pcb.cpp
|
|
||||||
cli/command_pcb_export.cpp
|
|
||||||
jobs/job_dispatcher.cpp
|
jobs/job_dispatcher.cpp
|
||||||
advanced_config.cpp
|
advanced_config.cpp
|
||||||
array_axis.cpp
|
array_axis.cpp
|
||||||
|
|
|
@ -16,6 +16,12 @@ include_directories(
|
||||||
)
|
)
|
||||||
|
|
||||||
set( KICAD_SRCS
|
set( KICAD_SRCS
|
||||||
|
cli/command_export_pcb_base.cpp
|
||||||
|
cli/command_export_pcb_dxf.cpp
|
||||||
|
cli/command_export_pcb_step.cpp
|
||||||
|
cli/command_export_pcb_svg.cpp
|
||||||
|
cli/command_pcb.cpp
|
||||||
|
cli/command_pcb_export.cpp
|
||||||
dialogs/dialog_template_selector_base.cpp
|
dialogs/dialog_template_selector_base.cpp
|
||||||
dialogs/dialog_template_selector.cpp
|
dialogs/dialog_template_selector.cpp
|
||||||
dialogs/panel_kicad_launcher_base.cpp
|
dialogs/panel_kicad_launcher_base.cpp
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
||||||
* Copyright (C) 2016 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
|
||||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify it
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
@ -20,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "command_export_pcb_base.h"
|
#include "command_export_pcb_base.h"
|
||||||
#include "exit_codes.h"
|
#include <cli/exit_codes.h>
|
||||||
#include <kiface_base.h>
|
#include <kiface_base.h>
|
||||||
|
|
||||||
#include <macros.h>
|
#include <macros.h>
|
|
@ -2,7 +2,6 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
||||||
* Copyright (C) 2016 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
|
||||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify it
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
@ -20,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "command_export_pcb_dxf.h"
|
#include "command_export_pcb_dxf.h"
|
||||||
#include "exit_codes.h"
|
#include <cli/exit_codes.h>
|
||||||
#include "jobs/job_export_pcb_dxf.h"
|
#include "jobs/job_export_pcb_dxf.h"
|
||||||
#include <kiface_base.h>
|
#include <kiface_base.h>
|
||||||
#include <layer_ids.h>
|
#include <layer_ids.h>
|
|
@ -2,7 +2,6 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
||||||
* Copyright (C) 2016 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
|
||||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify it
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
@ -20,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "command_export_pcb_step.h"
|
#include "command_export_pcb_step.h"
|
||||||
#include "exit_codes.h"
|
#include <cli/exit_codes.h>
|
||||||
#include "jobs/job_export_pcb_step.h"
|
#include "jobs/job_export_pcb_step.h"
|
||||||
#include <kiface_base.h>
|
#include <kiface_base.h>
|
||||||
#include <regex>
|
#include <regex>
|
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "command_export_pcb_svg.h"
|
#include "command_export_pcb_svg.h"
|
||||||
#include "exit_codes.h"
|
#include <cli/exit_codes.h>
|
||||||
#include "jobs/job_export_pcb_svg.h"
|
#include "jobs/job_export_pcb_svg.h"
|
||||||
#include <kiface_base.h>
|
#include <kiface_base.h>
|
||||||
#include <layer_ids.h>
|
#include <layer_ids.h>
|
Loading…
Reference in New Issue