[+] 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 .. "/**.h")
files(path .. "/**.hpp") files(path .. "/**.hpp")
files(path .. "/**.inl") files(path .. "/**.inl")
files(path .. "/**.inc")
files(path .. "/**.ipp") files(path .. "/**.ipp")
end) end)
@ -405,10 +406,12 @@ local function setupProject(prj)
{ {
path .. "/**.*pp", path .. "/**.*pp",
path .. "/**.inl", path .. "/**.inl",
path .. "/**.inc",
path .. "/**.c", path .. "/**.c",
path .. "/**.cc", path .. "/**.cc",
path .. "/**.cxx", path .. "/**.cxx",
path .. "/**.h", path .. "/**.h",
path .. "/**.asm",
path .. "/**.masm" -- required explicitly path .. "/**.masm" -- required explicitly
} }
end, root) end, root)

View File

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