MASM preprocessor definitions (#917)

* MASM preprocessor definitions
This commit is contained in:
J Guy Davidson 2017-10-13 17:06:57 +01:00 committed by Tom van Dijck
parent 798b72b7d4
commit 922440da94

View File

@ -794,6 +794,7 @@
local fileCfgFunc = function(fcfg, condition)
if fcfg then
return {
m.MasmPreprocessorDefinitions,
m.excludedFromBuild,
m.exceptionHandlingSEH,
}
@ -1891,6 +1892,13 @@
end
function m.MasmPreprocessorDefinitions(cfg, condition)
if cfg.defines then
m.preprocessorDefinitions(cfg, cfg.defines, false, condition)
end
end
function m.minimalRebuild(cfg)
if config.isOptimizedBuild(cfg) or
cfg.flags.NoMinimalRebuild or