Skip to content

Commit

Permalink
fix include path for SDL
Browse files Browse the repository at this point in the history
  • Loading branch information
jube committed Nov 24, 2023
1 parent a7bf9d9 commit eb38200
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion library/core/Tmx.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ inline namespace v1 {
} else if (name == "group") {
tmx.layers.push_back(parseTmxGroupLayer(layer, ctx));
}
};
}

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Clipboard.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
#include <gf/Clipboard.h>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Log.h>

Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Cursor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <cassert>
#include <utility>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Image.h>
#include <gf/Log.h>
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Gamepad.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <cinttypes>
#include <cstring>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Event.h>
#include <gf/Log.h>
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Keyboard.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#include <gf/Keyboard.h>

#include <SDL.h>
#include <SDL2/SDL.h>

namespace gf {
#ifndef DOXYGEN_SHOULD_SKIP_THIS
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Library.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <cassert>
#include <cstdio>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <ft2build.h>
#include FT_FREETYPE_H
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Monitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <cassert>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Log.h>

Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Paths.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#include <gf/Paths.h>

#include <SDL.h>
#include <SDL2/SDL.h>

namespace gf {
#ifndef DOXYGEN_SHOULD_SKIP_THIS
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/ResourceManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#include <gf/ResourceManager.h>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gfpriv/GlFwd.h>

Expand Down
2 changes: 1 addition & 1 deletion library/graphics/SdlDebug.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#include <gfpriv/SdlDebug.h>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Log.h>

Expand Down
2 changes: 1 addition & 1 deletion library/graphics/SystemInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#include <gf/SystemInfo.h>

#include <SDL.h>
#include <SDL2/SDL.h>

namespace gf {
#ifndef DOXYGEN_SHOULD_SKIP_THIS
Expand Down
2 changes: 1 addition & 1 deletion library/graphics/Window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <cassert>
#include <type_traits>

#include <SDL.h>
#include <SDL2/SDL.h>

#include <gf/Cursor.h>
#include <gf/Event.h>
Expand Down

0 comments on commit eb38200

Please sign in to comment.