2018-03-17 23:45:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-04-18 08:05:21 +00:00
|
|
|
<Project>
|
2020-08-21 03:27:07 +00:00
|
|
|
<Import Project="..\..\VSProps\Base.Macros.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<Import Project="$(VSPropsDir)Base.Targets.props" />
|
2018-03-17 23:45:45 +00:00
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<ProjectGuid>{E4BECBAB-9C6E-41AB-BB56-F9D70AB6BE03}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<Import Project="$(VSPropsDir)Configuration.Application.props" />
|
2018-03-17 23:45:45 +00:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<ImportGroup Label="ExtensionSettings" />
|
2018-03-17 23:45:45 +00: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 00:34:06 +00:00
|
|
|
<Import Project="$(VSPropsDir)Base.props" />
|
2022-07-31 07:39:35 +00:00
|
|
|
<Import Project="$(VSPropsDir)Base.Dolphin.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<Import Project="$(VSPropsDir)PCHUse.props" />
|
2018-03-17 23:45:45 +00:00
|
|
|
</ImportGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
2019-04-11 18:21:50 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetName>Updater</TargetName>
|
|
|
|
</PropertyGroup>
|
2018-03-17 23:45:45 +00:00
|
|
|
<ItemGroup>
|
2020-09-15 14:22:32 +00:00
|
|
|
<ProjectReference Include="$(CoreDir)DolphinLib.vcxproj">
|
|
|
|
<Project>{D79392F7-06D6-4B4B-A39F-4D587C215D3A}</Project>
|
2019-02-25 22:08:03 +00:00
|
|
|
</ProjectReference>
|
2018-03-17 23:45:45 +00:00
|
|
|
</ItemGroup>
|
2022-09-11 06:21:12 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="..\UpdaterCommon\Platform.h" />
|
|
|
|
<ClInclude Include="..\UpdaterCommon\UI.h" />
|
|
|
|
<ClInclude Include="..\UpdaterCommon\UpdaterCommon.h" />
|
|
|
|
</ItemGroup>
|
2018-03-17 23:45:45 +00:00
|
|
|
<ItemGroup>
|
2020-09-15 14:22:32 +00:00
|
|
|
<ClCompile Include="..\UpdaterCommon\UpdaterCommon.cpp" />
|
2018-03-17 23:45:45 +00:00
|
|
|
<ClCompile Include="Main.cpp" />
|
2022-09-11 06:21:12 +00:00
|
|
|
<ClCompile Include="Platform.cpp" />
|
2019-02-25 22:08:03 +00:00
|
|
|
<ClCompile Include="WinUI.cpp" />
|
2018-03-17 23:45:45 +00:00
|
|
|
</ItemGroup>
|
2022-07-31 07:39:35 +00: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-17 23:45:45 +00: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-27 22:28:40 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Manifest Include="Updater.exe.manifest" />
|
|
|
|
</ItemGroup>
|
2018-03-17 23:45:45 +00: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 04:42:37 +00:00
|
|
|
</Project>
|