aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPär Björklund <per@ohmy.nu>2016-10-23 20:05:07 +0200
committerPär Björklund <per@ohmy.nu>2016-10-23 20:05:07 +0200
commit1e90c3de2bb38617583a6a8bf3ffeabb3b4c6f34 (patch)
tree6a265766d3d0d38ea94406962184793f051e82ca /tools
parentd7fa42eb1bc3d6403c8c7afaa65b306e910f4a86 (diff)
Build addons with debug info on Windows
Change buildsetup to bundle all our PDB files into an archive, should hopefully make it easier to look at addon crashes
Diffstat (limited to 'tools')
-rw-r--r--tools/buildsteps/win32/make-addons.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildsteps/win32/make-addons.bat b/tools/buildsteps/win32/make-addons.bat
index efad84a9cf..473e73a871 100644
--- a/tools/buildsteps/win32/make-addons.bat
+++ b/tools/buildsteps/win32/make-addons.bat
@@ -104,7 +104,7 @@ IF "%addon%" NEQ "" (
rem execute cmake to generate makefiles processable by nmake
cmake "%ADDONS_PATH%" -G "NMake Makefiles" ^
- -DCMAKE_BUILD_TYPE=Release ^
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo ^
-DCMAKE_USER_MAKE_RULES_OVERRIDE="%SCRIPTS_PATH%/CFlagOverrides.cmake" ^
-DCMAKE_USER_MAKE_RULES_OVERRIDE_CXX="%SCRIPTS_PATH%/CXXFlagOverrides.cmake" ^
-DCMAKE_INSTALL_PREFIX=%ADDONS_INSTALL_PATH% ^