25 lines
606 B
Batchfile
25 lines
606 B
Batchfile
@echo off
|
|
|
|
:: `ping` is being used in place of `TIMEOUT`
|
|
:: https://www.ibm.com/support/pages/timeout-command-run-batch-job-exits-immediately-and-returns-error-input-redirection-not-supported-exiting-process-immediately
|
|
|
|
taskkill /im tracy-profiler.exe /f 2> nul
|
|
|
|
start tracy-capture.exe -o .tracy -f
|
|
|
|
echo Launching app...
|
|
build\clang-user-profiling\bin\powerplay.exe
|
|
|
|
if NOT %errorlevel% == 0 (
|
|
echo.
|
|
echo Program failed
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
:: Give time for trace file to finish before opening tracy
|
|
ping -n 2 127.0.0.1 >NUL
|
|
|
|
echo Launching tracy...
|
|
start "" "tracy-profiler.exe" ".tracy"
|