[+] Add "darwin" platform-file filter

[*] Match *.inc
This commit is contained in:
Reece Wilson 2022-09-08 21:08:10 +01:00
parent ec2252b571
commit 1e9053b938
2 changed files with 4 additions and 0 deletions

View File

@ -379,6 +379,7 @@ local function setupProject(prj)
files(path .. "/**.h")
files(path .. "/**.hpp")
files(path .. "/**.inl")
files(path .. "/**.inc")
files(path .. "/**.ipp")
end)
@ -405,10 +406,12 @@ local function setupProject(prj)
{
path .. "/**.*pp",
path .. "/**.inl",
path .. "/**.inc",
path .. "/**.c",
path .. "/**.cc",
path .. "/**.cxx",
path .. "/**.h",
path .. "/**.asm",
path .. "/**.masm" -- required explicitly
}
end, root)

View File

@ -49,6 +49,7 @@ local function feature()
auFilter(auFilterOf({notPlatforms = isNotApple}))
excludeFiles "apple"
excludeFiles "xnu"
excludeFiles "darwin"
auFilter{}
auFilter(auFilterOf({notPlatforms = {"mac"}}))