NGSPICE_NETLIST_EXPORTER: Display a message if there is a missing library. Wrap library file names in quotes.

This commit is contained in:
Maciej Suminski 2016-08-18 18:06:26 +02:00
parent 7f5bce3772
commit ad3c2ac4ea
1 changed files with 12 additions and 2 deletions

View File

@ -60,13 +60,23 @@ bool NETLIST_EXPORTER_PSPICE::Format( OUTPUTFORMATTER* aFormatter, unsigned aCtl
// Write .include directives
for( auto lib : m_libraries )
{
wxString full_path;
if( ( aCtl & NET_ADJUST_INCLUDE_PATHS ) && m_paths )
{
// Look for the library in known search locations
lib = m_paths->FindValidPath( lib );
full_path = m_paths->FindValidPath( lib );
}
aFormatter->Print( 0, ".include %s\n", (const char*) lib.c_str() );
if( full_path.IsEmpty() )
{
DisplayError( NULL, wxString::Format( wxT( "Could not find library file %s" ), lib ) );
return false;
}
else
{
aFormatter->Print( 0, ".include \"%s\"\n", (const char*) full_path.c_str() );
}
}
for( const auto& item : m_spiceItems )