Move python_scripts up one folder in eeschema

This commit is contained in:
Marek Roszko 2023-09-16 20:24:41 -04:00
parent ab8bcf537e
commit d3e5517bfb
18 changed files with 20 additions and 20 deletions

View File

@ -684,4 +684,4 @@ make_lexer(
TSCHEMATIC_T
)
add_subdirectory( plugins )
add_subdirectory( python_scripts )

View File

@ -1,19 +0,0 @@
# EESCHEMA's netlist and bom sample scripts
set( PYTHON_SCRIPTS_LIST
python_scripts/README-bom.txt
python_scripts/kicad_utils.py
python_scripts/kicad_netlist_reader.py
python_scripts/bom_csv_grouped_by_value.py
python_scripts/bom_csv_grouped_by_value_with_fp.py
python_scripts/bom_csv_grouped_extra.py
python_scripts/bom_csv_sorted_by_ref.py
python_scripts/bom_html_grouped_by_value.py
python_scripts/bom_html_with_advanced_grouping.py
python_scripts/bom_txt_sorted_by_ref.py
)
install( FILES ${PYTHON_SCRIPTS_LIST}
DESTINATION ${KICAD_PLUGINS}
COMPONENT binary
)

View File

@ -0,0 +1,19 @@
# EESCHEMA's netlist and bom sample scripts
set( PYTHON_SCRIPTS_LIST
README-bom.txt
kicad_utils.py
kicad_netlist_reader.py
bom_csv_grouped_by_value.py
bom_csv_grouped_by_value_with_fp.py
bom_csv_grouped_extra.py
bom_csv_sorted_by_ref.py
bom_html_grouped_by_value.py
bom_html_with_advanced_grouping.py
bom_txt_sorted_by_ref.py
)
install( FILES ${PYTHON_SCRIPTS_LIST}
DESTINATION ${KICAD_PLUGINS}
COMPONENT binary
)