diff options
Diffstat (limited to 'tools/render-test/render-test.vcxproj')
| -rw-r--r-- | tools/render-test/render-test.vcxproj | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/tools/render-test/render-test.vcxproj b/tools/render-test/render-test.vcxproj index a175d3973..1b022f913 100644 --- a/tools/render-test/render-test.vcxproj +++ b/tools/render-test/render-test.vcxproj @@ -22,7 +22,7 @@ <ProjectGuid>{96610759-07B9-4EEB-A974-5C634A2E742B}</ProjectGuid> <Keyword>Win32Proj</Keyword> <RootNamespace>rendertest</RootNamespace> - <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> + <WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> @@ -75,19 +75,23 @@ <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>true</LinkIncremental> - <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath> + <IncludePath>$(SolutionDir)external\;$(SolutionDir);$(IncludePath)</IncludePath> + <LibraryPath>$(SolutionDir)external\vulkan\lib\windows-$(PlatformShortName)\;$(LibraryPath)</LibraryPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LinkIncremental>true</LinkIncremental> - <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath> + <IncludePath>$(SolutionDir)external\;$(SolutionDir);$(IncludePath)</IncludePath> + <LibraryPath>$(SolutionDir)external\vulkan\lib\windows-$(PlatformShortName)\;$(LibraryPath)</LibraryPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <LinkIncremental>false</LinkIncremental> - <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath> + <IncludePath>$(SolutionDir)external\;$(SolutionDir);$(IncludePath)</IncludePath> + <LibraryPath>$(SolutionDir)external\vulkan\lib\windows-$(PlatformShortName)\;$(LibraryPath)</LibraryPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <LinkIncremental>false</LinkIncremental> - <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath> + <IncludePath>$(SolutionDir)external\;$(SolutionDir);$(IncludePath)</IncludePath> + <LibraryPath>$(SolutionDir)external\vulkan\lib\windows-$(PlatformShortName)\;$(LibraryPath)</LibraryPath> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -165,14 +169,18 @@ <ClCompile Include="main.cpp" /> <ClCompile Include="options.cpp" /> <ClCompile Include="render-d3d11.cpp" /> + <ClCompile Include="render-d3d12.cpp" /> <ClCompile Include="render-gl.cpp" /> + <ClCompile Include="render-vk.cpp" /> <ClCompile Include="shader-input-layout.cpp" /> <ClCompile Include="slang-support.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="options.h" /> <ClInclude Include="render-d3d11.h" /> + <ClInclude Include="render-d3d12.h" /> <ClInclude Include="render-gl.h" /> + <ClInclude Include="render-vk.h" /> <ClInclude Include="render.h" /> <ClInclude Include="shader-input-layout.h" /> <ClInclude Include="slang-support.h" /> |
