VS2010自定义构建工具,用于生成.h文件

时间:2011-08-27 16:40:01

标签: c++ visual-studio-2010 msbuild custom-build-step

我正在尝试在VS2010中集成自定义构建工具,该工具从源文件生成.h文件。我为这个步骤创建了一个.xml,.targets和.props。 XML主要是从MASM文件中复制粘贴的,最后是:

<ItemType Name="FOO" DisplayName="Foo compiler" />
<FileExtension Name="*.foo" ContentType="FOO" />
<ContentType Name="FOO" DisplayName="Foo compiler" ItemType="FOO" />

这会将我的所有.foo文件映射到.props中定义的Foo编译器:

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <PropertyPageSchema Include="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml" />
    <AvailableItemName Include="FOO">
      <Targets>FooCompile</Targets>
    </AvailableItemName>
  </ItemGroup>
  <UsingTask TaskName="FOO" TaskFactory="XamlTaskFactory" AssemblyName="Microsoft.Build.Tasks.v4.0">
    <Task>$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml</Task>
  </UsingTask>
  <Target Name="FooCompile" BeforeTargets="$(FOOBeforeTargets)" AfterTargets="$(FOOAfterTargets)" Condition="'@(FOO)' != ''" Outputs="%(FOO.Outputs)" Inputs="%(FOO.Identity);%(FOO.AdditionalDependencies);$(MSBuildProjectFile)" DependsOnTargets="_SelectedFiles">
    <Message Importance="High" Text="@(FOO)" />
    <FOO Condition="'@(FOO)' != '' and '%(FOO.ExcludedFromBuild)' != 'true'"
         CommandLineTemplate="%(FOO.CommandLineTemplate)"
         OutputFileName="%(FOO.OutputFileName)"
         Inputs="%(FOO.Identity)" />
  </Target>
</Project>

当我编译项目时,它成功识别并编译我的foo文件:

1>FooCompile:
1>  apa.foo
1>FooCompile:
1>  banan.foo
1>ClCompile:
1>  test.cpp
1>  main.cpp

我的问题是为什么它为每个文件打印一次“FooCompile:”而ClCompile没有?有没有办法改变这个?

如果我更改cpp文件并进行构建,我还会为每个文件获取一次此输出,我想避免这样做:

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

1 个答案:

答案 0 :(得分:1)

FooCompile目标正在使用“目标批处理”,这会导致目标为为Outputs属性%(Foo)指定的数组中的每个项目迭代一次。另一方面,ClCompile目标使用整个项目数组@(ClCompile)。

您可以更改记录器的详细程度以避免消息,指定/ v:minimal,但当然您也可能会过滤掉其他信息。