[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/2] Alias Target GetProjectInfoForReference for EWDK 20348 builds
- To: win-pv-devel@xxxxxxxxxxxxxxxxxxxx
- From: Paul Durrant <xadimgnik@xxxxxxxxx>
- Date: Tue, 8 Jun 2021 14:58:00 +0100
- Delivery-date: Tue, 08 Jun 2021 13:58:05 +0000
- List-id: Developer list for the Windows PV Drivers subproject <win-pv-devel.lists.xenproject.org>
On 03/06/2021 14:32, Owen Smith wrote:
Signed-off-by: Owen Smith <owen.smith@xxxxxxxxxx>
---
vs2019/version/version.vcxproj | 6 ++++++
vs2019/xenbus_coinst/xenbus_coinst.vcxproj | 6 ++++++
vs2019/xenbus_monitor/xenbus_monitor.vcxproj | 6 ++++++
Is it sufficient to modify just these three? Could you add some text in
the commit message to explain what this new target is?
Cheers,
Paul
3 files changed, 18 insertions(+)
diff --git a/vs2019/version/version.vcxproj b/vs2019/version/version.vcxproj
index 9d149d0..b6ec6f3 100644
--- a/vs2019/version/version.vcxproj
+++ b/vs2019/version/version.vcxproj
@@ -13,4 +13,10 @@
<Target Name="Build">
<Exec Command="powershell.exe -ExecutionPolicy Bypass -NoProfile -NonInteractive
-File $(Script) $(Platform) $(SolutionDir) $(IncludeDir) $(SourceDir)" />
</Target>
+ <Target Name="GetProjectInfoForReference"
+ Returns="@(ProjectInfoForReference)">
+ <ItemGroup>
+ <ProjectInfoForReference Include="@(LibFullPath)" />
+ </ItemGroup>
+ </Target>
</Project>
diff --git a/vs2019/xenbus_coinst/xenbus_coinst.vcxproj
b/vs2019/xenbus_coinst/xenbus_coinst.vcxproj
index df3cc04..b239210 100644
--- a/vs2019/xenbus_coinst/xenbus_coinst.vcxproj
+++ b/vs2019/xenbus_coinst/xenbus_coinst.vcxproj
@@ -58,4 +58,10 @@
<None Include="..\..\src\coinst\xenbus_coinst.def" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <Target Name="GetProjectInfoForReference"
+ Returns="@(ProjectInfoForReference)">
+ <ItemGroup>
+ <ProjectInfoForReference Include="@(LibFullPath)" />
+ </ItemGroup>
+ </Target>
</Project>
diff --git a/vs2019/xenbus_monitor/xenbus_monitor.vcxproj
b/vs2019/xenbus_monitor/xenbus_monitor.vcxproj
index 8703bb5..4e4ccc5 100644
--- a/vs2019/xenbus_monitor/xenbus_monitor.vcxproj
+++ b/vs2019/xenbus_monitor/xenbus_monitor.vcxproj
@@ -74,4 +74,10 @@
<ResourceCompile Include="..\..\src\monitor\xenbus_monitor.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <Target Name="GetProjectInfoForReference"
+ Returns="@(ProjectInfoForReference)">
+ <ItemGroup>
+ <ProjectInfoForReference Include="@(LibFullPath)" />
+ </ItemGroup>
+ </Target>
</Project>
|