allow static dependencies

This commit is contained in:
2025-03-30 12:05:55 -05:00
parent a7b809d538
commit 79e66baefc

View File

@@ -76,7 +76,10 @@ namespace Archimedes {
skip = false; skip = false;
continue; continue;
} else { } 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);
} }
} }