From 3d4c35c3ca686a8d62a775548b99d798be97289e Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 13 Jun 2011 07:34:55 +0000 Subject: [PATCH] (svn r22576) -Add: bundle_pdb command to put the pdb into the bundles directory as well --- Makefile.msvc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile.msvc b/Makefile.msvc index 8ee1e7088d..1748146e62 100644 --- a/Makefile.msvc +++ b/Makefile.msvc @@ -27,9 +27,16 @@ SRC_DIR = "$(ROOT_DIR)/src" BUNDLE_DIR = "$(ROOT_DIR)/bundle" BUNDLES_DIR = "$(ROOT_DIR)/bundles" TTD = openttd.exe +PDB = openttd.pdb TARGET := $(shell echo $(PLATFORM) | sed "s@win64@x64@;s@win32@Win32@") all: $(Q)cp objs/$(TARGET)/Release/$(TTD) $(BIN_DIR)/$(TTD) include Makefile.bundle.in + +bundle_pdb: + @echo '[BUNDLE] Creating $(BUNDLE_NAME).pdb.xz' + $(Q)mkdir -p "$(BUNDLES_DIR)" + $(Q)cp objs/$(TARGET)/Release/$(PDB) $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb + $(Q)cd xz -9 $(BUNDLES_DIR)/$(BUNDLE_NAME).pdb