mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fixed multiple inclusion of SPICE libraries
This commit is contained in:
parent
a7bac77b3e
commit
2c3488dfac
@ -133,11 +133,16 @@ void AbstractSpiceKernel::startNetlist(QTextStream &stream, bool xyce)
|
||||
QString s;
|
||||
|
||||
// Include Directives
|
||||
QStringList incls;
|
||||
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
||||
if ((pc->SpiceModel==".INCLUDE")||
|
||||
(pc->Model=="SpLib")) {
|
||||
s = pc->getSpiceModel();
|
||||
stream<<s;
|
||||
if (!incls.contains(s)) {
|
||||
// prevent multiple libraries inclusion
|
||||
incls.append(s);
|
||||
stream<<s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user