diff options
author | watcherhd <watcherhd@gmail.com> | 2017-04-27 00:40:08 +0300 |
---|---|---|
committer | watcherhd <watcherhd@gmail.com> | 2017-04-27 00:40:08 +0300 |
commit | f27fbe387bede98cf64d7fd7fb3dcff1ba60279d (patch) | |
tree | 7381e6d6e2647c78af01472e36ad5b8b5913dcce /plugins/Toaster | |
parent | 37bd274cc2581512307abb78e7dd6800dd69e90c (diff) |
build toaster in MSVS 2017 (and not only in 2013)
Diffstat (limited to 'plugins/Toaster')
-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 32718b8da4..867dd0bee0 100644 --- a/plugins/Toaster/Toaster.vcxproj +++ b/plugins/Toaster/Toaster.vcxproj @@ -27,12 +27,12 @@ <Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
<PropertyGroup Condition="'$(Platform)'=='Win32'">
- <IncludePath>$(VC_IncludePath);$(WindowsSdk_IncludePath);</IncludePath>
- <LibraryPath>$(VC_LibraryPath_x86);$(WindowsSdk_LibraryPath_x86);</LibraryPath>
+ <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>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='x64'">
- <IncludePath>$(VC_IncludePath);$(WindowsSdk_IncludePath);</IncludePath>
- <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSdk_LibraryPath_x64);</LibraryPath>
+ <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>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
|