-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCpp.Agent.props
69 lines (59 loc) · 2.65 KB
/
Cpp.Agent.props
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
<!--
Summary
# Agent.prolog.props
+ Default targets (Build, Clean, Rebuild, PackFilter)
+ PlatformToolset, Configuration, IsDebug, IsRelease
+ Platform, RuntimePlatform
+ CoreTargetFramework, FullTargetFramework
# hook.zou.build.props
# Cpp.NTVersion.props
# Com.WorkDir.props
# Tmp.IntDir.props
# Cpp.AsmDir.props
# Cpp.PkgDir.props
# Cpp.OutDir.props
# Agent.epilog.props
+ TargetDir, OutputPath, IntermediateOutputPath
# Forward.props
# [Microsoft.Cpp.targets] if ImportMicrosoftCppTargets
-->
<Project InitialTargets="TraceCppAgent">
<PropertyGroup>
<_PropertySheetDisplayName>[zou] C++ Agent</_PropertySheetDisplayName>
<ZouAgentType>Cpp</ZouAgentType>
</PropertyGroup>
<Import Project="Agent.prolog.props" />
<ImportGroup Label="PropertySheets">
<Import Project="Cpp.NTVersion.props" />
<Import Project="Com.WorkDir.props"/>
<Import Project="Cpp.ObjDir.props" />
<Import Project="Cpp.BinDir.props"/>
<Import Project="Tmp.IntDir.props" />
<Import Project="Cpp.AsmDir.props" />
<Import Project="Cpp.OutDir.props"/>
<Import Project="Cpp.PkgDir.props" />
</ImportGroup>
<PropertyGroup>
<ImportMicrosoftCppTargets>true</ImportMicrosoftCppTargets>
</PropertyGroup>
<Import Project="Agent.epilog.props" />
<Target Name="TraceCppAgent" Condition="'$(ZouTrace)' == 'true' Or '$(MSBuildProjectFile)' == '$(MSBuildThisFile)'">
<Message Importance="high" Text="zou/Cpp.Agent.props [$(MSBuildProjectFile)]" />
<Message Importance="high" Text="-------------------" />
<Message Importance="high" Text="NTVersion = _WIN32_WINNT = $(NTVersion)" />
<Message Importance="high" Text="WorkDirSpecified = $(WorkDirSpecified)" />
<Message Importance="high" Text="WorkDir = $(WorkDir)" />
<Message Importance="high" Text="IntDir = $(IntDir)" />
<Message Importance="high" Text="AsmDirSpecified = $(AsmDirSpecified)" />
<Message Importance="high" Text="AsmDir = $(AsmDir)" />
<Message Importance="high" Text="AsmProjDir = $(AsmProjDir)" />
<Message Importance="high" Text="PkgDirSpecified = $(PkgDirSpecified)" />
<Message Importance="high" Text="PkgBinDirSpecified = $(PkgBinDirSpecified)" />
<Message Importance="high" Text="PkgDir = $(PkgDir)" />
<Message Importance="high" Text="PkgBinDir = $(PkgBinDir)" />
<Message Importance="high" Text="PkgDbgDir = $(PkgDbgDir)" />
<Message Importance="high" Text="OutDirSpecified = $(OutDirSpecified)" />
<Message Importance="high" Text="OutDir = $(OutDir)" />
<Message Importance="high" Text=" " />
</Target>
</Project>