gpt4 book ai didi

c++ - 如何将自定义生成目标添加到 Visual C++ 2010 项目?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:25:47 24 4
gpt4 key购买 nike

有很多指南可以帮助您在 VS2010 中使用 MSBuild 模仿 VS2008 的“自定义生成步骤”。但是,我希望我的构建更智能并利用 MSBuild。我写了a little MSBuild task它调用 ANTLR 解析器生成器。当我在一个简单的测试 MSBuild 文件中运行该构建任务时,它可以完美运行。但是,当我尝试将我的任务添加到 C++ 项目时,我遇到了问题。本质上我已经将它添加到我的项目文件的顶部(在 <project> 元素之后):

  <UsingTask TaskName="ANTLR.MSBuild.AntlrGrammar"
AssemblyName = "ANTLR.MSBuild, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d50cc80512acc876" />
<Target Name="BeforeBuild"
Inputs="ConfigurationParser.g"
Outputs="ConfigurationParserParser.h;ConfigurationParserParser.cpp;ConfigurationParserLexer.h;ConfigurationParserLexer.cpp">
<AntlrGrammar
AntlrLocation="$(MSBuildProjectDirectory)Antlr.jar"
Grammar="ConfigurationParser.g"
RenameToCpp="true" />
</Target>

但是,我的目标在构建之前没有被调用。

如何将我的任务添加到 C++ 构建中?

最佳答案

在阅读此答案之前,您可能希望了解:

扩展 MSBuild 的旧方法,以及我所拥有的引用书中提到的方法,本质上是基于覆盖 Microsoft 提供的默认空目标。上面第二个链接中指定的新方法是定义您自己的任意目标,并使用“BeforeTargets”和“AfterTargets”属性强制您的目标在预期目标之前或之后运行。

在我的特定情况下,我需要在 CLCompile 目标之前运行 ANTLR Grammars 任务,它实际上构建 C++ 文件,因为 ANTLR Grammars 任务构建 .cpp 文件。因此,XML 看起来像这样:

<Project ...
<!-- Other things put in by VS2010 ... this is the bottom of the file -->
<UsingTask TaskName="ANTLR.MSBuild.AntlrGrammar"
AssemblyName = "ANTLR.MSBuild, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d50cc80512acc876" />
<Target Name="AntlrGrammars"
Inputs="Configuration.g"
Outputs="ConfigurationParser.h;ConfigurationParser.cpp;ConfigurationLexer.h;ConfigurationLexer.cpp"
BeforeTargets="ClCompile">
<AntlrGrammar
AntlrLocation="$(MSBuildProjectDirectory)\Antlr.jar"
Grammar="Configuration.g"
RenameToCpp="true" />
</Target>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>

至于为什么这优于 PreBuildEvent 和/或 PostBuildEvent;这足够聪明,不会在语法本身未更新时重建 .cpps。你会得到类似的东西:

1>AntlrGrammars:1>Skipping target "AntlrGrammars" because all output files are up-to-date with respect to the input files.1>ClCompile:1>  All outputs are up-to-date.1>  All outputs are up-to-date.

这也消除了 Visual Studio 在您每次运行程序时不断提示它需要重建东西,就像它在简单的构建前和构建后步骤中所做的那样。

希望这对某人有帮助——我花了很长时间才弄明白。

关于c++ - 如何将自定义生成目标添加到 Visual C++ 2010 项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3269575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com