summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2019-03-06 04:54:35 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2019-03-06 04:54:35 (GMT)
commit63f73c5f9542e461a6daa5e95cb7fd16e161f3b6 (patch)
tree1cc2d303664e889dde97819c8701a7f4de1ac542 /win/makefile.vc
parent9470b0e3ea0f2b6495852aa069a0e8b06d85d774 (diff)
downloadtk-63f73c5f9542e461a6daa5e95cb7fd16e161f3b6.zip
tk-63f73c5f9542e461a6daa5e95cb7fd16e161f3b6.tar.gz
tk-63f73c5f9542e461a6daa5e95cb7fd16e161f3b6.tar.bz2
Copy PDBs to installation if option PDBS is given during install
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc8
1 files changed, 8 insertions, 0 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 947e167..1e44bff 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -336,6 +336,9 @@ all: release $(CAT32)
core: setup $(TKSTUBLIB) $(TKLIB)
cwish: $(WISHC)
install: install-binaries install-libraries install-docs
+!if $(SYMBOLS)
+install: install-pdbs
+!endif
tktest: setup $(TKTEST) $(CAT32)
setup: default-setup
@@ -516,6 +519,11 @@ install-docs:
!endif
# "emacs font-lock highlighting fix
+install-pdbs:
+ @echo Installing debug symbols
+ @$(CPY) "$(OUT_DIR)\*.pdb" "$(BIN_INSTALL_DIR)\"
+# "emacs font-lock highlighting fix
+
#---------------------------------------------------------------------
# Special case object file targets
#---------------------------------------------------------------------