Changeset 896 for trunk/qmake/generators/win32/winmakefile.cpp
- Timestamp:
- Jul 18, 2011, 9:37:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/win32/winmakefile.cpp
r886 r896 845 845 if(project->isActiveConfig("shared") && project->isActiveConfig("debug")) { 846 846 QString pdb_target = getPdbTarget(); 847 pdb_target.remove('"'); 848 QString src_targ = (project->isEmpty("DESTDIR") ? QString("$(DESTDIR)") : project->first("DESTDIR")) + pdb_target; 849 QString dst_targ = filePrefixRoot(root, fileFixify(targetdir + pdb_target, FileFixifyAbsolute)); 850 if(!ret.isEmpty()) 851 ret += "\n\t"; 852 ret += QString("-$(INSTALL_FILE)") + " \"" + src_targ + "\" \"" + dst_targ + "\""; 853 if(!uninst.isEmpty()) 854 uninst.append("\n\t"); 855 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\""); 847 if (!pdb_target.isEmpty()) { 848 pdb_target.remove('"'); 849 QString src_targ = (project->isEmpty("DESTDIR") ? QString("$(DESTDIR)") : project->first("DESTDIR")) + pdb_target; 850 QString dst_targ = filePrefixRoot(root, fileFixify(targetdir + pdb_target, FileFixifyAbsolute)); 851 if(!ret.isEmpty()) 852 ret += "\n\t"; 853 ret += QString("-$(INSTALL_FILE)") + " \"" + src_targ + "\" \"" + dst_targ + "\""; 854 if(!uninst.isEmpty()) 855 uninst.append("\n\t"); 856 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\""); 857 } 856 858 } 857 859 }
Note:
See TracChangeset
for help on using the changeset viewer.