[*] auFilter usage

This commit is contained in:
Reece Wilson 2022-03-04 18:21:25 +00:00
parent 2b27da2c2c
commit dc4d50bc2c

View File

@ -171,23 +171,15 @@ local function auBlockProjectKeyImplIncludes(processor, value)
end
local function auBlockProjectKeyClangIgnore(processor, value)
if (targetingCmake) then
filter {"toolset:clang"}
end
auFilter {"toolset:clang"}
disablewarnings(value)
filter {}
auFilter {}
end
local function auBlockProjectKeyMSVCIgnore(processor, value)
if (targetingCmake) then
filter {"toolset:msc"}
end
auFilter {"toolset:msc"}
disablewarnings(value)
filter {}
auFilter {}
end
local function _auBlockProjectKeyLinks(value, processor)