CREATE_PROJECT: Don't exclude header files

We can't accurately determine which header belongs to which object,
so leave them in. They don't affect the compilation anyway.
This commit is contained in:
SupSuper 2021-02-02 09:58:50 +00:00
parent ebd825fde4
commit cc015ed40d

View File

@ -1479,12 +1479,12 @@ FileNode *scanFiles(const std::string &dir, const StringList &includeList, const
continue;
}
if (isInList(dir, i->name, excludeList))
continue;
std::string name, ext;
splitFilename(i->name, name, ext);
if (ext != "h" && isInList(dir, i->name, excludeList))
continue;
if (!isInList(dir, i->name, includeList))
continue;