<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="..\VSProps\Base.Macros.props" /> <Import Project="$(VSPropsDir)Base.Targets.props" /> <PropertyGroup Label="Globals"> <ProjectGuid>{474661E7-C73A-43A6-AFEE-EE1EC433D49E}</ProjectGuid> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VSPropsDir)Configuration.Application.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings" /> <ImportGroup Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> <Import Project="$(VSPropsDir)Base.props" /> <Import Project="$(VSPropsDir)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. --> <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> <SubSystem>Console</SubSystem> </Link> </ItemDefinitionGroup> <ItemGroup> <ClInclude Include="Core\DSP\DSPTestBinary.h" /> <ClInclude Include="Core\DSP\DSPTestText.h" /> <ClInclude Include="Core\DSP\HermesBinary.h" /> <ClInclude Include="Core\IOS\ES\TestBinaryData.h" /> </ItemGroup> <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--> <ClCompile Include="Common\BitFieldTest.cpp" /> <ClCompile Include="Common\BitSetTest.cpp" /> <ClCompile Include="Common\BitUtilsTest.cpp" /> <ClCompile Include="Common\BlockingLoopTest.cpp" /> <ClCompile Include="Common\BusyLoopTest.cpp" /> <ClCompile Include="Common\CommonFuncsTest.cpp" /> <ClCompile Include="Common\Crypto\EcTest.cpp" /> <ClCompile Include="Common\EventTest.cpp" /> <ClCompile Include="Common\FixedSizeQueueTest.cpp" /> <ClCompile Include="Common\FlagTest.cpp" /> <ClCompile Include="Common\FloatUtilsTest.cpp" /> <ClCompile Include="Common\MathUtilTest.cpp" /> <ClCompile Include="Common\NandPathsTest.cpp" /> <ClCompile Include="Common\SPSCQueueTest.cpp" /> <ClCompile Include="Common\StringUtilTest.cpp" /> <ClCompile Include="Common\SwapTest.cpp" /> <ClCompile Include="Core\CoreTimingTest.cpp" /> <ClCompile Include="Core\DSP\DSPAcceleratorTest.cpp" /> <ClCompile Include="Core\DSP\DSPAssemblyTest.cpp" /> <ClCompile Include="Core\DSP\DSPTestBinary.cpp" /> <ClCompile Include="Core\DSP\DSPTestText.cpp" /> <ClCompile Include="Core\DSP\HermesBinary.cpp" /> <ClCompile Include="Core\IOS\ES\FormatsTest.cpp" /> <ClCompile Include="Core\IOS\FS\FileSystemTest.cpp" /> <ClCompile Include="Core\MMIOTest.cpp" /> <ClCompile Include="Core\PageFaultTest.cpp" /> <ClCompile Include="VideoCommon\VertexLoaderTest.cpp" /> <ClCompile Include="StubHost.cpp" /> </ItemGroup> <!--Arch-specific tests--> <ItemGroup Condition="'$(Platform)'=='x64'"> <ClCompile Include="Common\x64EmitterTest.cpp" /> <ClCompile Include="Core\PowerPC\Jit64Common\ConvertDoubleToSingle.cpp" /> <ClCompile Include="Core\PowerPC\Jit64Common\Frsqrte.cpp" /> </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)UICommon\UICommon.vcxproj"> <Project>{604c8368-f34a-4d55-82c8-cc92a0c13254}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\D3D\D3D.vcxproj"> <Project>{96020103-4ba5-4fd2-b4aa-5b6d24492d4e}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\D3D12\D3D12.vcxproj"> <Project>{570215b7-e32f-4438-95ae-c8d955f9fca3}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\Null\Null.vcxproj"> <Project>{53A5391B-737E-49A8-BC8F-312ADA00736F}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\OGL\OGL.vcxproj" Condition="'$(Platform)'!='ARM64'"> <Project>{ec1a314c-5588-4506-9c1e-2e58e5817f75}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\Software\Software.vcxproj" Condition="'$(Platform)'!='ARM64'"> <Project>{a4c423aa-f57c-46c7-a172-d1a777017d29}</Project> </ProjectReference> <ProjectReference Include="$(CoreDir)VideoBackends\Vulkan\Vulkan.vcxproj"> <Project>{29F29A19-F141-45AD-9679-5A2923B49DA3}</Project> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> <Target Name="ExecUnitTests" AfterTargets="AfterBuild;CopyDeps" Condition="'$(RunUnitTests)'=='true'"> <!--This is only executed via msbuild, VS test runner automatically does this--> <Exec Command="$(TargetPath)" /> </Target> </Project>