diff options
author | Rainer Schuetze <r.sagitario@gmx.de> | 2023-04-02 09:39:56 (GMT) |
---|---|---|
committer | Rainer Schuetze <r.sagitario@gmx.de> | 2023-04-02 09:39:56 (GMT) |
commit | 4d9596ce98097f817700948a90daa3e8b150ed9b (patch) | |
tree | 7467dbcfe2d8284e4bf9975072e067f6605e2b7c | |
parent | b36951d9b0c9a9b69784cde6342926ee4a7d0381 (diff) | |
download | cv2pdb-4d9596ce98097f817700948a90daa3e8b150ed9b.zip cv2pdb-4d9596ce98097f817700948a90daa3e8b150ed9b.tar.gz cv2pdb-4d9596ce98097f817700948a90daa3e8b150ed9b.tar.bz2 |
fix vcxproj files so they don't require a specific VS version
-rw-r--r-- | src/dumplines.vcxproj | 4 | ||||
-rw-r--r-- | src/dviewhelper/dviewhelper.vcxproj | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/dumplines.vcxproj b/src/dumplines.vcxproj index 3460678..4bf62fd 100644 --- a/src/dumplines.vcxproj +++ b/src/dumplines.vcxproj @@ -26,13 +26,13 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
- <PlatformToolset>v120_xp</PlatformToolset>
+ <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
- <PlatformToolset>v120_xp</PlatformToolset>
+ <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
diff --git a/src/dviewhelper/dviewhelper.vcxproj b/src/dviewhelper/dviewhelper.vcxproj index db8fdf4..e373574 100644 --- a/src/dviewhelper/dviewhelper.vcxproj +++ b/src/dviewhelper/dviewhelper.vcxproj @@ -20,17 +20,17 @@ <WindowsTargetPlatformVersion_10 Condition="'$(WindowsTargetPlatformVersion_10)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)</WindowsTargetPlatformVersion_10> <!-- Sometimes the version in the registry has to .0 suffix, and sometimes it doesn't. Check and add it --> <WindowsTargetPlatformVersion_10 Condition="'$(WindowsTargetPlatformVersion_10)' != '' and !$(WindowsTargetPlatformVersion_10.EndsWith('.0'))">$(WindowsTargetPlatformVersion_10).0</WindowsTargetPlatformVersion_10> - <WindowsTargetPlatformVersion Condition="'$(WindowsTargetPlatformVersion_10)' != ''">10.0</WindowsTargetPlatformVersion> + <WindowsTargetPlatformVersion Condition="'$(WindowsTargetPlatformVersion_10)' != ''">$(WindowsTargetPlatformVersion_10)</WindowsTargetPlatformVersion> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> - <PlatformToolset>v143</PlatformToolset> + <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset> <CharacterSet>MultiByte</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> - <PlatformToolset>v143</PlatformToolset> + <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset> <CharacterSet>MultiByte</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |