[+] Add "darwin" platform-file filter
[*] Match *.inc
This commit is contained in:
parent
ec2252b571
commit
1e9053b938
@ -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)
|
||||||
|
@ -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"}}))
|
||||||
|
Loading…
Reference in New Issue
Block a user