Move the backend files around a bit
This commit is contained in:
parent
15bfd00d25
commit
b84661d88a
3 changed files with 8 additions and 8 deletions
|
@ -247,9 +247,9 @@ if(NONPORTABLE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(RENDERER MATCHES "Texture")
|
if(RENDERER MATCHES "Texture")
|
||||||
target_sources(CSE2 PRIVATE "src/Backends/SDLTexture.cpp")
|
target_sources(CSE2 PRIVATE "src/Backends/Rendering/SDLTexture.cpp")
|
||||||
elseif(RENDERER MATCHES "Software")
|
elseif(RENDERER MATCHES "Software")
|
||||||
target_sources(CSE2 PRIVATE "src/Backends/SDLSoftware.cpp")
|
target_sources(CSE2 PRIVATE "src/Backends/Rendering/Software.cpp")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Make some tweaks if we're targetting Windows
|
# Make some tweaks if we're targetting Windows
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
#include "Rendering.h"
|
#include "../Rendering.h"
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
|
|
||||||
#include "../WindowsWrapper.h"
|
#include "../../WindowsWrapper.h"
|
||||||
|
|
||||||
#include "../Font.h"
|
#include "../../Font.h"
|
||||||
|
|
||||||
struct Backend_Surface
|
struct Backend_Surface
|
||||||
{
|
{
|
|
@ -1,13 +1,13 @@
|
||||||
#include "Rendering.h"
|
#include "../Rendering.h"
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
|
|
||||||
#include "../WindowsWrapper.h"
|
#include "../../WindowsWrapper.h"
|
||||||
|
|
||||||
#include "../Font.h"
|
#include "../../Font.h"
|
||||||
|
|
||||||
struct Backend_Surface
|
struct Backend_Surface
|
||||||
{
|
{
|
Loading…
Add table
Reference in a new issue