summaryrefslogtreecommitdiffstats
path: root/Tools/BiomeVisualiser/profile_run.cmd
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-14 01:32:00 +0200
committerMattes D <github@xoft.cz>2014-09-14 01:33:05 +0200
commite3a2dc5a1391d8aaaa3fdb83e946838540a07e75 (patch)
tree1a665fcc4ae0ea097ba476f70dddb5ef03539a28 /Tools/BiomeVisualiser/profile_run.cmd
parentOSSupport: Fixed UNICODE Windows builds. (diff)
downloadcuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar.gz
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar.bz2
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar.lz
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar.xz
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.tar.zst
cuberite-e3a2dc5a1391d8aaaa3fdb83e946838540a07e75.zip
Diffstat (limited to 'Tools/BiomeVisualiser/profile_run.cmd')
-rw-r--r--Tools/BiomeVisualiser/profile_run.cmd70
1 files changed, 0 insertions, 70 deletions
diff --git a/Tools/BiomeVisualiser/profile_run.cmd b/Tools/BiomeVisualiser/profile_run.cmd
deleted file mode 100644
index d4826d06a..000000000
--- a/Tools/BiomeVisualiser/profile_run.cmd
+++ /dev/null
@@ -1,70 +0,0 @@
-@echo off
-::
-:: Profiling using a MSVC standalone profiler
-::
-:: See http://www.codeproject.com/Articles/144643/Profiling-of-C-Applications-in-Visual-Studio-for-F for details
-::
-
-
-
-
-set pt="C:\Program Files\Microsoft Visual Studio 9.0\Team Tools\Performance Tools"
-set appdir="Release profiled"
-set app="Release profiled\BiomeVisualiser.exe"
-set args=""
-
-:: outputdir is relative to appdir!
-set outputdir=Profiling
-set output=profile.vsp
-
-
-
-
-
-::Create the output directory, if it didn't exist
-mkdir %outputdir%
-
-
-
-
-
-:: Start the profiler
-%pt%\vsperfcmd /start:sample /output:%outputdir%\%output%
-if errorlevel 1 goto haderror
-
-:: Launch the application via the profiler
-%pt%\vsperfcmd /launch:%app% /args:%args%
-if errorlevel 1 goto haderror
-
-:: Shut down the profiler (this command waits, until the application is terminated)
-%pt%\vsperfcmd /shutdown
-if errorlevel 1 goto haderror
-
-
-
-
-
-:: cd to outputdir, so that the reports are generated there
-cd %outputdir%
-
-:: generate the report files (.csv)
-%pt%\vsperfreport /summary:all %output% /symbolpath:"srv*C:\Programovani\Symbols*http://msdl.microsoft.com/download/symbols"
-if errorlevel 1 goto haderror
-
-
-
-
-
-goto finished
-
-
-
-
-:haderror
-echo An error was encountered
-pause
-
-
-
-
-:finished