aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-05-30 15:41:31 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-01 13:28:26 +0300
commit4ddb80153cf400c1823eb772e9b54c4ef343fc7a (patch)
treece7ae8967ffc49d8297569b03b7a2d22c94deffd
parent4d5f24f7df61fdc96aea7b370f1e8a2f81bb825c (diff)
downloadlibmicrohttpd-4ddb80153cf400c1823eb772e9b54c4ef343fc7a.tar.gz
libmicrohttpd-4ddb80153cf400c1823eb772e9b54c4ef343fc7a.zip
W32 VS Project: fixed warning with external build systems
-rw-r--r--w32/common/common-build-settings.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/w32/common/common-build-settings.props b/w32/common/common-build-settings.props
index 5d106ccb..4a702d19 100644
--- a/w32/common/common-build-settings.props
+++ b/w32/common/common-build-settings.props
@@ -3,9 +3,9 @@
3 <PropertyGroup Label="UserMacros"> 3 <PropertyGroup Label="UserMacros">
4 <!-- Target minimum OS version: WinXP = 0; Vista = 1; Win7 = 2; Win8 = 3... 4 <!-- Target minimum OS version: WinXP = 0; Vista = 1; Win7 = 2; Win8 = 3...
5 Only 0, 1 and 3 are used currently --> 5 Only 0, 1 and 3 are used currently -->
6 <TargetOSLevel Condition="$(Platform.StartsWith('ARM'))">3</TargetOSLevel> 6 <TargetOSLevel Condition="$(Platform.ToLowerInvariant().StartsWith('arm'))">3</TargetOSLevel>
7 <TargetOSLevel Condition="! $(Platform.StartsWith('ARM')) And $(PlatformToolset.EndsWith('_xp'))">0</TargetOSLevel> 7 <TargetOSLevel Condition="! $(Platform.ToLowerInvariant().StartsWith('arm')) And $(PlatformToolset.EndsWith('_xp'))">0</TargetOSLevel>
8 <TargetOSLevel Condition="! $(Platform.StartsWith('ARM')) And ! $(PlatformToolset.EndsWith('_xp'))">1</TargetOSLevel> 8 <TargetOSLevel Condition="! $(Platform.ToLowerInvariant().StartsWith('arm')) And ! $(PlatformToolset.EndsWith('_xp'))">1</TargetOSLevel>
9 <MhdNumBits Condition="$(Platform.EndsWith('64'))">64</MhdNumBits> 9 <MhdNumBits Condition="$(Platform.EndsWith('64'))">64</MhdNumBits>
10 <MhdNumBits Condition="! $(Platform.EndsWith('64'))">32</MhdNumBits> 10 <MhdNumBits Condition="! $(Platform.EndsWith('64'))">32</MhdNumBits>
11 </PropertyGroup> 11 </PropertyGroup>