mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +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:
parent
ebd825fde4
commit
cc015ed40d
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user