Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2017-08-13 23:09:05 +0300
committerKacper Michajłow <kasper93@gmail.com>2017-08-13 23:09:05 +0300
commitfc49d878b2208eedab4df83c5fcba8e9e51d3dcd (patch)
treef9e7fe091e58819a2a62952e894eb08280d054d3
parentd181b13f98c760a86d60e64480a2d12fce0dde77 (diff)
[MPC-HC] Respect MPCHC_WINSDK_VER value.mpc-hc-1.7.13-1
-rw-r--r--common/platform.props3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/platform.props b/common/platform.props
index 3828ac88..ace55c45 100644
--- a/common/platform.props
+++ b/common/platform.props
@@ -8,6 +8,7 @@
</PropertyGroup>
<PropertyGroup>
<UseNativeEnvironment>true</UseNativeEnvironment>
- <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
+ <WindowsTargetPlatformVersion Condition="'$(MPCHC_WINSDK_VER)' == ''">8.1</WindowsTargetPlatformVersion>
+ <WindowsTargetPlatformVersion Condition="'$(MPCHC_WINSDK_VER)' != ''">$(MPCHC_WINSDK_VER)</WindowsTargetPlatformVersion>
</PropertyGroup>
</Project>