diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2019-03-06 11:16:42 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2019-03-06 11:16:42 (GMT) |
commit | 78e9fe3c5367237a7855bc91749374056c7a39b3 (patch) | |
tree | aaf1e44c1331d547dfd9c23e8fc44819bccfee34 /win | |
parent | 66463b7f19d9e14296571c368b1a5710c7d455fd (diff) | |
parent | 63f73c5f9542e461a6daa5e95cb7fd16e161f3b6 (diff) | |
download | tk-78e9fe3c5367237a7855bc91749374056c7a39b3.zip tk-78e9fe3c5367237a7855bc91749374056c7a39b3.tar.gz tk-78e9fe3c5367237a7855bc91749374056c7a39b3.tar.bz2 |
Copy PDBs to installation if option PDBS is given during install
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index a216b2f..d02a94f 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -347,6 +347,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
@@ -527,6 +530,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
#---------------------------------------------------------------------
|