• Stefan Helmert's avatar
    The internal BOM generator has bugs. I designed an XSL script, which converts... · 5da0a971
    Stefan Helmert authored
    The internal BOM generator has bugs. I designed an XSL script, which converts the generated XML Partlist into
    a CSV file for Libre Office or Open Office.  It is very easy to use. You can specify it as a plugin for 
    Eeshema netlist generator.
    
    It searches for all field names, generates the table headings accounting for all fields found in any part.
    Then stuffs all the parts rows according to proper fields.
    
    5da0a971
CMakeLists.txt 402 Bytes
# Install the *.xsl file(s), user will need to install 'xsltproc' and setup
# EESCHEMA's netlist plugins
# See chapter 14 of eeschema.pdf


set( xsl_lst
    bom2csv.xsl
    bom_cvs.xsl
    netlist_form_cadstar-RINF.xsl
    netlist_form_cadstar.xsl
    netlist_form_OrcadPcb2.xsl
    netlist_form_pads-pcb.xsl
    )

install( FILES ${xsl_lst}
    DESTINATION ${KICAD_PLUGINS}
    COMPONENT binary
    )