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
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue