如何添加 node-gyp 不直接支持的自定义编译器标志?

How can I add a custom compiler flag that is not directly supported by node-gyp?

我有一个使用 Gyp 设置的 MSVC 项目。
我查看了 gyp 的来源,但没有找到任何对 /Zm 标志的引用。

我可以把/Zm200放在gyp文件的什么地方?

MSVC 的 GYP 目标中可能有 msvs_settings 字典:

        'msvs_settings': {
            'VCCLCompilerTool': { 'AdditionalOptions': ['/Zm200'], },
        },