2018-03-18 00:45:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-04-18 10:05:21 +02:00
|
|
|
<Project>
|
2020-08-21 05:27:07 +02:00
|
|
|
<Import Project="..\..\VSProps\Base.Macros.props" />
|
2020-08-19 02:34:06 +02:00
|
|
|
<Import Project="$(VSPropsDir)Base.Targets.props" />
|
2018-03-18 00:45:45 +01:00
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<ProjectGuid>{E4BECBAB-9C6E-41AB-BB56-F9D70AB6BE03}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2020-08-19 02:34:06 +02:00
|
|
|
<Import Project="$(VSPropsDir)Configuration.Application.props" />
|
2018-03-18 00:45:45 +01:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2020-08-19 02:34:06 +02:00
|
|
|
<ImportGroup Label="ExtensionSettings" />
|
2018-03-18 00:45:45 +01:00
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
2020-08-19 02:34:06 +02:00
|
|
|
<Import Project="$(VSPropsDir)Base.props" />
|
2022-07-31 09:39:35 +02:00
|
|
|
<Import Project="$(VSPropsDir)Base.Dolphin.props" />
|
2020-08-19 02:34:06 +02:00
|
|
|
<Import Project="$(VSPropsDir)PCHUse.props" />
|
2018-03-18 00:45:45 +01:00
|
|
|
</ImportGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
2019-04-11 20:21:50 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetName>Updater</TargetName>
|
|
|
|
</PropertyGroup>
|
2018-03-18 00:45:45 +01:00
|
|
|
<ItemGroup>
|
2020-09-15 16:22:32 +02:00
|
|
|
<ProjectReference Include="$(CoreDir)DolphinLib.vcxproj">
|
|
|
|
<Project>{D79392F7-06D6-4B4B-A39F-4D587C215D3A}</Project>
|
2019-02-25 23:08:03 +01:00
|
|
|
</ProjectReference>
|
2018-03-18 00:45:45 +01:00
|
|
|
</ItemGroup>
|
2022-09-11 08:21:12 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="..\UpdaterCommon\Platform.h" />
|
|
|
|
<ClInclude Include="..\UpdaterCommon\UI.h" />
|
|
|
|
<ClInclude Include="..\UpdaterCommon\UpdaterCommon.h" />
|
|
|
|
</ItemGroup>
|
2018-03-18 00:45:45 +01:00
|
|
|
<ItemGroup>
|
2020-09-15 16:22:32 +02:00
|
|
|
<ClCompile Include="..\UpdaterCommon\UpdaterCommon.cpp" />
|
2018-03-18 00:45:45 +01:00
|
|
|
<ClCompile Include="Main.cpp" />
|
2022-09-11 08:21:12 +02:00
|
|
|
<ClCompile Include="Platform.cpp" />
|
2019-02-25 23:08:03 +01:00
|
|
|
<ClCompile Include="WinUI.cpp" />
|
2018-03-18 00:45:45 +01:00
|
|
|
</ItemGroup>
|
2022-07-31 09:39:35 +02:00
|
|
|
<Import Project="$(ExternalsDir)cpp-optparse\exports.props" />
|
|
|
|
<Import Project="$(ExternalsDir)curl\exports.props" />
|
|
|
|
<Import Project="$(ExternalsDir)ed25519\exports.props" />
|
|
|
|
<Import Project="$(ExternalsDir)fmt\exports.props" />
|
|
|
|
<Import Project="$(ExternalsDir)mbedtls\exports.props" />
|
|
|
|
<Import Project="$(ExternalsDir)zlib-ng\exports.props" />
|
2018-03-18 00:45:45 +01:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
</ImportGroup>
|
|
|
|
<!--Copy the .exe to binary output folder-->
|
|
|
|
<ItemGroup>
|
|
|
|
<SourceFiles Include="$(TargetPath)" />
|
|
|
|
</ItemGroup>
|
2018-03-28 00:28:40 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<Manifest Include="Updater.exe.manifest" />
|
|
|
|
</ItemGroup>
|
2018-03-18 00:45:45 +01:00
|
|
|
<Target Name="AfterBuild" Inputs="@(SourceFiles)" Outputs="@(SourceFiles -> '$(BinaryOutputDir)%(Filename)%(Extension)')">
|
|
|
|
<Message Text="Copy: @(SourceFiles) -> $(BinaryOutputDir)" Importance="High" />
|
|
|
|
<Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(BinaryOutputDir)" />
|
|
|
|
</Target>
|
2019-11-07 05:42:37 +01:00
|
|
|
</Project>
|