diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-06-15 20:39:13 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-06-15 22:07:20 +0000 |
| commit | 89093e949368f5fee353ae4c4b7fa909ec4db6df (patch) | |
| tree | be03857480b1284aaff4f61697e38b20cc003d62 /CMakeScripts | |
| parent | PageSizer: Avoid writing terminating NULL to pages.csv (diff) | |
| download | inkscape-89093e949368f5fee353ae4c4b7fa909ec4db6df.tar.gz inkscape-89093e949368f5fee353ae4c4b7fa909ec4db6df.zip | |
CMake/MSYS2: Include gdb into distribution
Also include a batch script that should make it easy to collect a
backtrace with relevant info for most users.
Fixes https://gitlab.com/inkscape/inkscape/issues/81
Diffstat (limited to 'CMakeScripts')
| -rw-r--r-- | CMakeScripts/InstallMSYS2.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CMakeScripts/InstallMSYS2.cmake b/CMakeScripts/InstallMSYS2.cmake index 74135d250..ba3ec6309 100644 --- a/CMakeScripts/InstallMSYS2.cmake +++ b/CMakeScripts/InstallMSYS2.cmake @@ -270,4 +270,16 @@ if(WIN32) EXCLUDE "^\\.\\.\\/" # exclude content in parent directories (notably scripts installed to /bin)
)
endforeach()
+
+ # gdb
+ install(FILES
+ ${MINGW_BIN}/gdb.exe
+ ${MINGW_BIN}/libreadline8.dll
+ DESTINATION bin)
+ install(DIRECTORY
+ ${MINGW_PATH}/share/gdb
+ DESTINATION share)
+ install(FILES
+ packaging/win32/gdb_create_backtrace.bat
+ DESTINATION bin)
endif()
|
