-
Notifications
You must be signed in to change notification settings - Fork 0
/
gas.targets
70 lines (70 loc) · 2.63 KB
/
gas.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PropertyPageSchema
Include="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml" />
<AvailableItemName
Include="GAS">
<Targets>_GAS</Targets>
</AvailableItemName>
</ItemGroup>
<UsingTask
TaskName="GAS"
TaskFactory="XamlTaskFactory"
AssemblyName="Microsoft.Build.Tasks.v4.0">
<Task>$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml</Task>
</UsingTask>
<Target
Name="_GAS"
BeforeTargets="$(GASBeforeTargets)"
AfterTargets="$(GASAfterTargets)"
Condition="'@(GAS)' != ''"
DependsOnTargets="$(GASDependsOn);ComputeGASOutput"
Outputs="%(GAS.ObjectFile)"
Inputs="@(GAS);%(GAS.AdditionalDependencies);$(MSBuildProjectFile)">
<ItemGroup
Condition="'@(SelectedFiles)' != ''">
<GAS
Remove="@(GAS)"
Condition="'%(Identity)' != '@(SelectedFiles)'" />
</ItemGroup>
<ItemGroup>
<GAS_tlog
Include="%(GAS.ObjectFile)"
Condition="'%(GAS.ObjectFile)' != '' and '%(GAS.ExcludedFromBuild)' != 'true'">
<Source>@(GAS, '|')</Source>
</GAS_tlog>
</ItemGroup>
<WriteLinesToFile
Condition="'@(GAS_tlog)' != '' and '%(GAS_tlog.ExcludedFromBuild)' != 'true'"
File="$(IntDir)$(ProjectName).write.1.tlog"
Lines="^%(GAS_tlog.Source);@(GAS_tlog->'%(Fullpath)')" />
<GAS
Condition="'%(GAS.Identity)' != '' and '%(GAS.ExcludedFromBuild)' != 'true'"
CommandLineTemplate="%(GAS.CommandLineTemplate)"
IncludePaths="%(GAS.IncludePaths)"
Defines="%(GAS.Defines)"
CDefines="%(GAS.CDefines)"
SAFESEH="%(GAS.SAFESEH)"
ObjectFile="%(GAS.ObjectFile)"
AdditionalOptions="%(GAS.AdditionalOptions)"
Inputs="%(GAS.Identity)" />
</Target>
<PropertyGroup>
<ComputeLinkInputsTargets>
$(ComputeLinkInputsTargets);
ComputeGASOutput;
</ComputeLinkInputsTargets>
<ComputeLibInputsTargets>
$(ComputeLibInputsTargets);
ComputeGASOutput;
</ComputeLibInputsTargets>
</PropertyGroup>
<Target Name="ComputeGASOutput" Condition="'@(GAS)' != ''">
<ItemGroup>
<Link Include="@(GAS->Metadata('ObjectFile')->Distinct()->ClearMetadata())" Condition="'%(GAS.ExcludedFromBuild)' != 'true'"/>
<Lib Include="@(GAS->Metadata('ObjectFile')->Distinct()->ClearMetadata())" Condition="'%(GAS.ExcludedFromBuild)' != 'true'"/>
<ImpLib Include="@(GAS->Metadata('ObjectFile')->Distinct()->ClearMetadata())" Condition="'%(GAS.ExcludedFromBuild)' != 'true'"/>
</ItemGroup>
</Target>
</Project>