Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MSbuild 类从我的程序模块编译 Visual Studio 2010 项目。但我找不到如何告诉编译器它必须使用哪些优化标志。MSBuild 上只有 Optimize 属性,.vcxproj 文件中只有标签。但我想玩这样的编译器开关,如 /Os /Ot /Oi 等。怎么做?
MSBuild中有一个标准的CL Task,表示为
<ClCompile>
.vcxproj 文件中的标记。所以可以通过这个任务的参数来玩编译器开关