Skip to content

Commit

Permalink
Changed main include file for smoother integration process: Profiler.…
Browse files Browse the repository at this point in the history
…h => Brofiler.h
  • Loading branch information
bombomby committed Jul 7, 2015
1 parent 7ecb66b commit fd5d55f
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions PrepareVersion.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
xcopy /Y Release\Win32\EasyHook32.dll ..\publish\EasyHook32.dll
xcopy /Y Release\Win32\ProfilerCore32.dll ..\publish\ProfilerCore32.dll
xcopy /Y Release\Win32\ProfilerCore32.lib ..\publish\ProfilerCore32.lib
xcopy /Y Release\Win32\ProfilerCore32.pdb ..\publish\ProfilerCore32.pdb
xcopy /Y Release\Win32\ProfilerTest32.exe ..\publish\ProfilerTest32.exe
xcopy /Y Release\Win32\ProfilerTest32.pdb ..\publish\ProfilerTest32.pdb
xcopy /Y Release\x64\EasyHook64.dll ..\publish\EasyHook64.dll
xcopy /Y Release\x64\ProfilerCore64.dll ..\publish\ProfilerCore64.dll
xcopy /Y Release\x64\ProfilerCore64.lib ..\publish\ProfilerCore64.lib
xcopy /Y Release\x64\ProfilerCore64.pdb ..\publish\ProfilerCore64.pdb
xcopy /Y Release\x64\ProfilerTest64.exe ..\publish\ProfilerTest64.exe
xcopy /Y Release\x64\ProfilerTest64.pdb ..\publish\ProfilerTest64.pdb
xcopy /Y Release\x64\Brofiler.exe ..\publish\Brofiler.exe
xcopy /Y ProfilerCore\Brofiler.h ..\publish\Brofiler.h

File renamed without changes.
2 changes: 1 addition & 1 deletion ProfilerCore/Common.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once
#include "Types.h"
#include "Profiler.h"
#include "Brofiler.h"

// MEMORY //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define BRO_CACHE_LINE_SIZE 64
Expand Down
2 changes: 1 addition & 1 deletion ProfilerCore/ProfilerCore.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@
<ClInclude Include="Common.h" />
<ClInclude Include="HPTimer.h" />
<ClInclude Include="Message.h" />
<ClInclude Include="Profiler.h" />
<ClInclude Include="Brofiler.h" />
<ClInclude Include="ProfilerServer.h" />
<ClInclude Include="Sampler.h" />
<ClInclude Include="Serialization.h" />
Expand Down
6 changes: 3 additions & 3 deletions ProfilerCore/ProfilerCore.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
</ClInclude>
<ClInclude Include="Sampler.h" />
<ClInclude Include="EventDescriptionBoard.h" />
<ClInclude Include="Profiler.h">
<Filter>API</Filter>
</ClInclude>
<ClInclude Include="Core.h" />
<ClInclude Include="Thread.h">
<Filter>Tools</Filter>
Expand All @@ -53,6 +50,9 @@
<Filter>Tools</Filter>
</ClInclude>
<ClInclude Include="Event.h" />
<ClInclude Include="Brofiler.h">
<Filter>API</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="Tools">
Expand Down
2 changes: 1 addition & 1 deletion ProfilerTest/TestEngine.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "TestEngine.h"
#include "..\ProfilerCore\Types.h"
#include "..\ProfilerCore\Profiler.h"
#include "..\ProfilerCore\Brofiler.h"
#include <math.h>
#include <vector>

Expand Down

0 comments on commit fd5d55f

Please sign in to comment.