diff options
-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> |