diff options
| author | Jon Ashburn <jon@lunarg.com> | 2016-03-28 08:44:46 -0600 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-03-28 08:44:46 -0600 |
| commit | ed8b4e5b881574e68df2d1f8a547c01e283520b0 (patch) | |
| tree | 578026854ac01857f84b93f02e81fa3aa7f70834 | |
| parent | 990614d7f62b09807eb8d7ec727e5f16acdcf99d (diff) | |
| download | usermoji-ed8b4e5b881574e68df2d1f8a547c01e283520b0.tar.xz | |
demos: Change MSVC proj files to remove PATH and add VK_LAYER_PATH
The PATH is lower in search order so ICD that install loader in System32
which is now happening no longer find the local built vulkan-1.dll via the
PATH setting. Add the VK_LAYER_PATH so the local built layers get found.
Change-Id: I56097199a108e30fdf4787e09e62c8ca1544de91
| -rwxr-xr-x | demos/cube.vcxproj.user | 6 | ||||
| -rwxr-xr-x | demos/tri.vcxproj.user | 6 | ||||
| -rwxr-xr-x | demos/vulkaninfo.vcxproj.user | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/demos/cube.vcxproj.user b/demos/cube.vcxproj.user index 8d96498b..fc118aab 100755 --- a/demos/cube.vcxproj.user +++ b/demos/cube.vcxproj.user @@ -1,11 +1,11 @@ -<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Debug;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Debug</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Release;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Release</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
diff --git a/demos/tri.vcxproj.user b/demos/tri.vcxproj.user index 8d96498b..fc118aab 100755 --- a/demos/tri.vcxproj.user +++ b/demos/tri.vcxproj.user @@ -1,11 +1,11 @@ -<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Debug;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Debug</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Release;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Release</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
diff --git a/demos/vulkaninfo.vcxproj.user b/demos/vulkaninfo.vcxproj.user index 8d96498b..fc118aab 100755 --- a/demos/vulkaninfo.vcxproj.user +++ b/demos/vulkaninfo.vcxproj.user @@ -1,11 +1,11 @@ -<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Debug;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Debug</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <LocalDebuggerEnvironment>PATH=..\loader\Release;%PATH%</LocalDebuggerEnvironment>
+ <LocalDebuggerEnvironment>VK_LAYER_PATH=..\layers\Release</LocalDebuggerEnvironment>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
|
