diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-02-11 14:43:11 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-02-11 14:43:11 -0800 |
commit | f6ff8f6fcf6b9cdcde226e755ef00fa0bd248b20 (patch) | |
tree | 6fb323f7ac5ac72b16bdbf53bc2cbad15ea321d5 /templates/vsprojects | |
parent | a61221664565fb7fbebc7e48a9cc5f2c3937ddca (diff) |
remove _shared suffix from target dll names
Diffstat (limited to 'templates/vsprojects')
-rw-r--r-- | templates/vsprojects/vs2013/vcxproj_defs.include | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/vsprojects/vs2013/vcxproj_defs.include b/templates/vsprojects/vs2013/vcxproj_defs.include index c8e6fd3c06..2bdf0b94ea 100644 --- a/templates/vsprojects/vs2013/vcxproj_defs.include +++ b/templates/vsprojects/vs2013/vcxproj_defs.include @@ -52,7 +52,12 @@ % endfor </ImportGroup> <PropertyGroup Label="UserMacros" /> - <PropertyGroup /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> + <TargetName>${name}</TargetName> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> + <TargetName>${name}</TargetName> + </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <PrecompiledHeader>NotUsing</PrecompiledHeader> |