Add mod.conf file support This new file only permits to specify a mod name for now

This commit is contained in:
kaeza 2015-02-21 18:04:47 +01:00 committed by Loic Blot
parent a0affa496d
commit c5defe7a11
1 changed files with 5 additions and 0 deletions

View File

@ -47,6 +47,11 @@ static bool parseDependsLine(std::istream &is,
void parseModContents(ModSpec &spec)
{
// NOTE: this function works in mutual recursion with getModsInPath
Settings info;
info.readConfigFile((spec.path+DIR_DELIM+"mod.conf").c_str());
if (info.exists("name"))
spec.name = info.get("name");
spec.depends.clear();
spec.optdepends.clear();