2014-08-31 12:52:21 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-25 22:58:59 +00:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<ProjectConfiguration Include="Debug|ARM64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>ARM64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<ProjectConfiguration Include="Release|ARM64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>ARM64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{474661E7-C73A-43A6-AFEE-EE1EC433D49E}</ProjectGuid>
|
2019-11-07 04:42:37 +00:00
|
|
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
2019-11-07 04:42:37 +00:00
|
|
|
|
<PlatformToolset>v142</PlatformToolset>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
<Import Project="..\VSProps\Base.props" />
|
|
|
|
|
<Import Project="..\VSProps\PCHUse.props" />
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<!--This project also compiles gtest-->
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>$(ExternalsDir)gtest\include;$(ExternalsDir)gtest;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
<Link>
|
|
|
|
|
<!--
|
|
|
|
|
The following libs are needed since we pull in pretty much the entire
|
|
|
|
|
dolphin codebase.
|
|
|
|
|
-->
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<AdditionalDependencies>avrt.lib;iphlpapi.lib;winmm.lib;setupapi.lib;rpcrt4.lib;comctl32.lib;Shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
|
|
<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>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<SubSystem>Console</SubSystem>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!--gtest is rather small, so just include it into the build here-->
|
|
|
|
|
<ClCompile Include="$(ExternalsDir)gtest\src\gtest-all.cc" />
|
|
|
|
|
<ClCompile Include="$(ExternalsDir)gtest\src\gtest_main.cc" />
|
|
|
|
|
<!--Lump all of the tests (and supporting code) into one binary-->
|
2017-05-20 23:08:50 +00:00
|
|
|
|
<ClCompile Include="*.cpp" />
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<ClCompile Include="*\*.cpp">
|
|
|
|
|
<ExcludedFromBuild Condition="'$(Platform)'!='x64'">true</ExcludedFromBuild>
|
|
|
|
|
</ClCompile>
|
2017-05-20 00:36:04 +00:00
|
|
|
|
<ClCompile Include="*\*\*.cpp" />
|
2014-08-31 12:52:21 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Text Include="CMakeLists.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="$(CoreDir)Core\Core.vcxproj">
|
|
|
|
|
<Project>{E54CF649-140E-4255-81A5-30A673C1FB36}</Project>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="$(CoreDir)VideoBackends\D3D\D3D.vcxproj">
|
|
|
|
|
<Project>{96020103-4ba5-4fd2-b4aa-5b6d24492d4e}</Project>
|
|
|
|
|
</ProjectReference>
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)VideoBackends\OGL\OGL.vcxproj" Condition="'$(Platform)'!='ARM64'">
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<Project>{ec1a314c-5588-4506-9c1e-2e58e5817f75}</Project>
|
|
|
|
|
</ProjectReference>
|
2019-11-26 04:31:15 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)VideoBackends\Software\Software.vcxproj" Condition="'$(Platform)'!='ARM64'">
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<Project>{a4c423aa-f57c-46c7-a172-d1a777017d29}</Project>
|
|
|
|
|
</ProjectReference>
|
2016-06-09 21:11:34 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)VideoBackends\Null\Null.vcxproj">
|
|
|
|
|
<Project>{53A5391B-737E-49A8-BC8F-312ADA00736F}</Project>
|
|
|
|
|
</ProjectReference>
|
2016-08-13 12:57:50 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)VideoBackends\Vulkan\Vulkan.vcxproj">
|
|
|
|
|
<Project>{29F29A19-F141-45AD-9679-5A2923B49DA3}</Project>
|
|
|
|
|
</ProjectReference>
|
2017-06-05 02:56:28 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)UICommon\UICommon.vcxproj">
|
|
|
|
|
<Project>{604c8368-f34a-4d55-82c8-cc92a0c13254}</Project>
|
|
|
|
|
</ProjectReference>
|
2019-03-28 10:35:46 +00:00
|
|
|
|
<ProjectReference Include="..\Core\VideoBackends\D3D12\D3D12.vcxproj">
|
|
|
|
|
<Project>{570215b7-e32f-4438-95ae-c8d955f9fca3}</Project>
|
|
|
|
|
</ProjectReference>
|
2014-08-31 12:52:21 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
2016-01-02 18:07:08 +00:00
|
|
|
|
<Target Name="ExecUnitTests" AfterTargets="AfterBuild;CopyDeps" Condition="'$(RunUnitTests)'=='true'">
|
2014-08-31 12:52:21 +00:00
|
|
|
|
<!--This is only executed via msbuild, VS test runner automatically does this-->
|
2016-01-02 18:07:08 +00:00
|
|
|
|
<Exec Command="$(TargetPath)" />
|
2014-08-31 12:52:21 +00:00
|
|
|
|
</Target>
|
2019-11-26 04:31:15 +00:00
|
|
|
|
</Project>
|