0

我正在尝试在 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.
4

1 回答 1

2

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

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

于 2011-08-28T05:33:39.697 回答