summaryrefslogtreecommitdiff
path: root/templates/vc10.mpd
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-11-05 08:05:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-11-05 08:05:54 +0000
commit4e210dbbfa8485418d2f01404719172a5dcf9bc7 (patch)
tree91045b4dee355ae43f4c2221d8ff1a953bd2f9d5 /templates/vc10.mpd
parent5fb049e4232bc18df159a9198605327aa1e80a64 (diff)
downloadMPC-4e210dbbfa8485418d2f01404719172a5dcf9bc7.tar.gz
Wed Nov 5 08:03:49 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/templates/vc10.txt: * templates/vc10.mpd: * templates/vc1xdll.mpt: * templates/vc1xexe.mpt: * templates/vc7dll.mpt: With TAO we have the case that exe and dll have the same name which causes problems with the pdb file. Add a new use_pdb_modifier which we enable by default for vc1x, it adds _dll to the pdb file for a dll, and _exe to the pdb file for a exe
Diffstat (limited to 'templates/vc10.mpd')
-rw-r--r--templates/vc10.mpd4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/vc10.mpd b/templates/vc10.mpd
index 7c23e834..4a57a7c9 100644
--- a/templates/vc10.mpd
+++ b/templates/vc10.mpd
@@ -497,10 +497,10 @@
<%endif%>
<%if(pdbl)%>
<%if(sharedname)%>
- <ProgramDatabaseFile>$(OutDir)\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%>.pdb</ProgramDatabaseFile>
+ <ProgramDatabaseFile>$(OutDir)\<%libname_prefix%><%sharedname%><%if(use_lib_modifier)%><%lib_modifier%><%endif%><%if(use_pdb_modifier)%><%pdb_modifier%><%endif%>.pdb</ProgramDatabaseFile>
<%else%>
<%if(exename)%>
- <ProgramDatabaseFile>$(OutDir)\<%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%>.pdb</ProgramDatabaseFile>
+ <ProgramDatabaseFile>$(OutDir)\<%exename%><%if(use_exe_modifier)%><%lib_modifier%><%endif%><%if(use_pdb_modifier)%><%pdb_modifier%><%endif%>.pdb</ProgramDatabaseFile>
<%endif%>
<%endif%>
<%endif%>