allow static dependencies
This commit is contained in:
@@ -76,7 +76,10 @@ namespace Archimedes {
|
||||
skip = false;
|
||||
continue;
|
||||
} else {
|
||||
load(it->second, blacklist);
|
||||
if(std::holds_alternative<std::string>(it->second))
|
||||
load(std::get<std::string>(it->second), blacklist);
|
||||
else
|
||||
load(std::get<Module*>(it->second), blacklist);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user