mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Remove .cpp #includes
It is cleaner to not do that and just include the proper file in the build files if needed.
This commit is contained in:
parent
e8472581fa
commit
acba3bd258
|
@ -85,6 +85,7 @@
|
|||
<ClCompile Include="..\..\src\pugiXML\pugixml.cpp" />
|
||||
<ClCompile Include="..\..\src\Renderer_draw_gl.cpp" />
|
||||
<ClCompile Include="..\..\src\Renderer_init.cpp" />
|
||||
<ClCompile Include="..\..\src\Renderer_init_sdlgl.cpp" />
|
||||
<ClCompile Include="..\..\src\Sound.cpp" />
|
||||
<ClCompile Include="..\..\src\SystemData.cpp" />
|
||||
<ClCompile Include="..\..\src\Window.cpp" />
|
||||
|
|
|
@ -102,6 +102,9 @@
|
|||
<ClCompile Include="..\..\src\platform.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\Renderer_init_sdlgl.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\src\AudioManager.h">
|
||||
|
|
|
@ -1,12 +1,7 @@
|
|||
#include "Renderer.h"
|
||||
#include "platform.h"
|
||||
|
||||
#ifdef _RPI_
|
||||
#include "Renderer_init_rpi.cpp"
|
||||
#endif
|
||||
|
||||
#ifdef _DESKTOP_
|
||||
#include "Renderer_init_sdlgl.cpp"
|
||||
#endif
|
||||
#include GLHEADER
|
||||
#include "Font.h"
|
||||
|
||||
namespace Renderer
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue