Add archiving of SPICE files.

Fixes https://gitlab.com/kicad/code/kicad/issues/12102
This commit is contained in:
Jeff Young 2023-02-13 22:43:16 +00:00
parent e7fe69b97f
commit eb7fec52d5
1 changed files with 7 additions and 3 deletions

View File

@ -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;