2019-11-26 04:25:19 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-19 00:34:06 +00:00
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
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" />
|
2019-11-26 04:25:19 +00:00
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<ProjectGuid>{974E563D-23F8-4E8F-9083-F62876B04E08}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<Import Project="$(VSPropsDir)Configuration.Application.props" />
|
2019-11-26 04:25:19 +00:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2020-08-19 00:34:06 +00:00
|
|
|
<ImportGroup Label="ExtensionSettings" />
|
2019-11-26 04:25:19 +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" />
|
|
|
|
<Import Project="$(VSPropsDir)PCHUse.props" />
|
2019-11-26 04:25:19 +00:00
|
|
|
</ImportGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<Link>
|
2020-08-21 07:11:24 +00:00
|
|
|
<AdditionalDependencies>avrt.lib;iphlpapi.lib;winmm.lib;setupapi.lib;rpcrt4.lib;comctl32.lib;Shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2019-11-26 04:31:15 +00:00
|
|
|
<AdditionalDependencies Condition="'$(Platform)'=='x64'">opengl32.lib;avcodec.lib;avformat.lib;avutil.lib;swresample.lib;swscale.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
|
<AdditionalLibraryDirectories Condition="'$(Platform)'=='x64'">$(ExternalsDir)ffmpeg\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
2019-11-26 04:25:19 +00:00
|
|
|
<SubSystem>Console</SubSystem>
|
|
|
|
</Link>
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
2020-09-15 14:22:32 +00:00
|
|
|
<ProjectReference Include="$(CoreDir)DolphinLib.vcxproj">
|
|
|
|
<Project>{D79392F7-06D6-4B4B-A39F-4D587C215D3A}</Project>
|
2019-11-26 04:25:19 +00:00
|
|
|
</ProjectReference>
|
2020-09-15 14:22:32 +00:00
|
|
|
<ProjectReference Include="$(CoreDir)Common\SCMRevGen.vcxproj">
|
|
|
|
<Project>{41279555-f94f-4ebc-99de-af863c10c5c4}</Project>
|
2019-11-26 04:25:19 +00:00
|
|
|
</ProjectReference>
|
2020-09-15 14:22:32 +00:00
|
|
|
<ProjectReference Include="$(DolphinRootDir)Languages\Languages.vcxproj">
|
|
|
|
<Project>{0e033be3-2e08-428e-9ae9-bc673efa12b5}</Project>
|
2020-08-21 07:11:24 +00:00
|
|
|
</ProjectReference>
|
2019-11-26 04:25:19 +00:00
|
|
|
</ItemGroup>
|
2020-09-15 14:22:32 +00:00
|
|
|
<Import Project="$(ExternalsDir)ExternalsReferenceAll.props" />
|
2019-11-26 04:25:19 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ClCompile Include="MainNoGUI.cpp" />
|
|
|
|
<ClCompile Include="Platform.cpp" />
|
|
|
|
<ClCompile Include="PlatformHeadless.cpp" />
|
|
|
|
<ClCompile Include="PlatformWin32.cpp" />
|
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
</ImportGroup>
|
|
|
|
<!--Copy the .exe to binary output folder-->
|
|
|
|
<ItemGroup>
|
|
|
|
<SourceFiles Include="$(TargetPath)" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="Platform.h" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Manifest Include="DolphinNoGUI.exe.manifest" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Text Include="CMakeLists.txt" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ResourceCompile Include="DolphinNoGUI.rc" />
|
|
|
|
</ItemGroup>
|
|
|
|
<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-26 04:31:15 +00:00
|
|
|
</Project>
|