diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-10 03:16:34 -0700 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-10 03:16:34 -0700 |
commit | f9bfb22761ce245be0681bec065d04388f586b72 (patch) | |
tree | f15b53098f49fca200240e027e743d861b8730ab | |
parent | 1d55a15ece762c77eb0f7b4f1ccc7cb994480e92 (diff) |
Toaster: project file fix
-rw-r--r-- | plugins/Toaster/Toaster.vcxproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Toaster/Toaster.vcxproj b/plugins/Toaster/Toaster.vcxproj index 2955731d50..d965f82ed2 100644 --- a/plugins/Toaster/Toaster.vcxproj +++ b/plugins/Toaster/Toaster.vcxproj @@ -48,12 +48,12 @@ <ResourceCompile Include="res\version.rc" />
</ItemGroup>
<PropertyGroup Condition="'$(Platform)'=='Win32'">
- <IncludePath>$(VC_IncludePath);$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ProgramFiles)\Windows Kits\8.1\Include\winrt;</IncludePath>
- <LibraryPath>$(VC_LibraryPath_x86);$(ProgramFiles)\Windows Kits\8.1\lib\winv6.3\um\x86;</LibraryPath>
+ <IncludePath>$(VC_IncludePath);$(WindowsSDK80Path)\Include\um;$(WindowsSDK80Path)\Include\shared;$(WindowsSDK80Path)\Include\winrt;</IncludePath>
+ <LibraryPath>$(VC_LibraryPath_x86);$(WindowsSDK80Path)\lib\winv6.3\um\x86;</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='x64'">
- <IncludePath>$(VC_IncludePath);$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ProgramFiles)\Windows Kits\8.1\Include\winrt;</IncludePath>
- <LibraryPath>$(VC_LibraryPath_x64);$(ProgramFiles)\Windows Kits\8.1\lib\winv6.3\um\x64;</LibraryPath>
+ <IncludePath>$(VC_IncludePath);$(WindowsSDK80Path)\Include\um;$(WindowsSDK80Path)\Include\shared;$(WindowsSDK80Path)\Include\winrt;</IncludePath>
+ <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK80Path)\lib\winv6.3\um\x64;</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
|