我正在尝试创建一种使用 Microsoft C++ 在 Windows 上构建 mpir 的自动化方法。一个必需的步骤似乎是安装vsyasm,所以我目前的小项目是创建一种自动化的方式来做到这一点,即可以通过批处理文件或程序完成而无需人工干预。
vsyasm 自述文件建议了三种方法:
a. put these files in the MSBUILD customisation directory,
which is typically at:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizations
or:
C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizations
b. put them in a convenient location and set this path in the
'Build Customisations Search Path' in the Visual Studio
'Projects and Solutions|VC++ Project Settings' item in
the 'Tools|Options' menu;
c. put them in a convenient location and set this path in the
'Build Customisation dialogue (discussed later).
第一个被 Windows 安全阻止。有什么不需要人工干预的方法吗?
第二种和第三种直接需要人工干预。是否有任何自动等效项,特别是如果您想最终从命令行而不是在 IDE 中构建项目?
我还有其他选择吗?