[*] Guess what matches case insensitive nt? Entrypoi*nt*
This commit is contained in:
parent
c1fec4b1f4
commit
a4e296c867
@ -1,9 +1,14 @@
|
|||||||
local function feature()
|
local function feature()
|
||||||
local function excludeFiles(name, noFiles)
|
local function excludeFiles(name, noFiles, strict)
|
||||||
if (not noFiles) then
|
if (not noFiles) then
|
||||||
|
if (strict) then
|
||||||
|
excludes("**/*." .. name .. ".masm")
|
||||||
|
excludes("**/*." .. name .. ".*")
|
||||||
|
else
|
||||||
excludes("**/*" .. name .. ".masm")
|
excludes("**/*" .. name .. ".masm")
|
||||||
excludes("**/*" .. name .. ".*")
|
excludes("**/*" .. name .. ".*")
|
||||||
end
|
end
|
||||||
|
end
|
||||||
excludes("**/" .. name .. "/**")
|
excludes("**/" .. name .. "/**")
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -24,7 +29,7 @@ local function feature()
|
|||||||
auFilter{}
|
auFilter{}
|
||||||
|
|
||||||
auFilter(auFilterOf({notPlatforms = {"win32", "xbox"}}))
|
auFilter(auFilterOf({notPlatforms = {"win32", "xbox"}}))
|
||||||
excludeFiles "nt"
|
excludeFiles("nt", false, true)
|
||||||
auFilter{}
|
auFilter{}
|
||||||
|
|
||||||
auFilter(auFilterOf({notPlatforms = {"android"}}))
|
auFilter(auFilterOf({notPlatforms = {"android"}}))
|
||||||
|
Loading…
Reference in New Issue
Block a user