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-28 00:28:55 +0300
commit19e8ac7238deda8cf84e6d4b1cf7a30c27425071 (patch)
tree21611bbc69993bb622df32d8651005bb3c7630b0
parent181ff74d6c7968ed2c5b6589028001448812f8c2 (diff)
[MPC-HC] Respect MPCHC_WINSDK_VER value.HEADmpc-hc-1.7.13-2master
-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>