diff options
author | Joe George <joe@zeroc.com> | 2021-02-18 14:21:24 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-18 14:21:24 -0500 |
commit | e5db1a31becbd8ab78ce9a3f33700fccf564533d (patch) | |
tree | 0d4153218ffd03036105a58ac77c553e335ccad8 | |
parent | MATLAB build fixes (diff) | |
download | ice-e5db1a31becbd8ab78ce9a3f33700fccf564533d.tar.bz2 ice-e5db1a31becbd8ab78ce9a3f33700fccf564533d.tar.xz ice-e5db1a31becbd8ab78ce9a3f33700fccf564533d.zip |
Fixes to icethunk.vcxproj
-rw-r--r-- | matlab/src/msbuild/icethunk/icethunk.vcxproj | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/matlab/src/msbuild/icethunk/icethunk.vcxproj b/matlab/src/msbuild/icethunk/icethunk.vcxproj index eb4312303ef..8c7129fe142 100644 --- a/matlab/src/msbuild/icethunk/icethunk.vcxproj +++ b/matlab/src/msbuild/icethunk/icethunk.vcxproj @@ -12,28 +12,29 @@ </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{EC87DC16-51CB-4229-845D-23840A3CC8CB}</ProjectGuid> - <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> - <PlatformToolset>v140</PlatformToolset> + <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> - <PlatformToolset>v140</PlatformToolset> + <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(MSBuildThisFileDirectory)..\..\..\..\cpp\msbuild\ice.cpp11.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> <TargetExt>.dll</TargetExt> + <TargetName>$(ProjectName)</TargetName> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> <TargetExt>.dll</TargetExt> + <TargetName>$(ProjectName)</TargetName> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ClCompile> @@ -75,4 +76,4 @@ <Delete Files="$(Platform)\$(Configuration)\iceproto.m" /> <Delete Files="$(Platform)\$(Configuration)\icethunk.c" /> </Target> -</Project>
\ No newline at end of file +</Project> |