mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user