Browse Source

Add archiving of SPICE files.

Fixes https://gitlab.com/kicad/code/kicad/issues/12102
newinvert
Jeff Young 3 years ago
parent
commit
eb7fec52d5
  1. 10
      common/project/project_archiver.cpp

10
common/project/project_archiver.cpp

@ -137,9 +137,13 @@ bool PROJECT_ARCHIVER::Archive( const wxString& aSrcDir, const wxString& aDestFi
wxT( "*.g?" ), wxT( "*.g??" ), // Gerber files
wxT( "*.gm??" ), wxT( "*.gbrjob" ),
wxT( "*.pos" ), wxT( "*.drl" ), wxT( "*.nc" ), wxT( "*.xnc" ), // Fab files
wxT( "*.d356" ), wxT( "*.rpt" ),
wxT( "*.net" ), wxT( "*.py" ),
wxT( "*.pdf" ), wxT( "*.txt" )
wxT( "*.d356" ),
wxT( "*.rpt" ),
wxT( "*.net" ),
wxT( "*.py" ),
wxT( "*.pdf" ),
wxT( "*.txt" ),
wxT( "*.cir" ), wxT( "*.sub" ), wxT( "*.model" ) // SPICE files
};
bool success = true;

Loading…
Cancel
Save