MegaGlest/mk/windoze/mg_build_breakpad_stacktrac...

18 lines
383 B
Batchfile
Raw Normal View History

2013-05-21 05:41:30 +02:00
@echo off
if "%1." == "." goto NOTSET
2013-10-09 01:34:17 +02:00
if NOT EXIST "%1" goto NOTFOUND
..\..\source\windows_deps\google-breakpad\trunk\src\minidump_stackwalk.exe "%1" .\windows_symbols
goto END
:NOTSET
echo You need to pass the full path to the DMP file to process (usually in %AppData%\megaglest) as first argument on the command line.
goto END
:NOTFOUND
echo File not found [%1]
goto END
:END