diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 07:00:52 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 07:00:52 +0200 |
| commit | 3a16258e42b6f198c2fb4bfde45c66ee405adac4 (patch) | |
| tree | 05f67703353541958122918ce6c6b5f05052310d /test | |
| parent | e7518ac6a5e09502219e798841ae9dfa497f32b5 (diff) | |
don't -I./src
Diffstat (limited to 'test')
| -rw-r--r-- | test/dijkstra.cpp | 2 | ||||
| -rw-r--r-- | test/json.cpp | 10 | ||||
| -rw-r--r-- | test/path-search-result.cpp | 2 | ||||
| -rw-r--r-- | test/tile-iter.cpp | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/test/dijkstra.cpp b/test/dijkstra.cpp index 2cf32451..8b56e505 100644 --- a/test/dijkstra.cpp +++ b/test/dijkstra.cpp @@ -1,5 +1,5 @@ #include "app.hpp" -#include "path-search.hpp" +#include "src/path-search.hpp" #include "loader/loader.hpp" #include <Magnum/Math/Functions.h> #include <chrono> diff --git a/test/json.cpp b/test/json.cpp index 9c638530..c819c599 100644 --- a/test/json.cpp +++ b/test/json.cpp @@ -4,12 +4,12 @@ #include "serialize/tile.hpp" #include "serialize/json-helper.hpp" #include "compat/assert.hpp" -#include "tile-atlas.hpp" -#include "tile.hpp" -#include "chunk.hpp" -#include "world.hpp" +#include "src/tile-atlas.hpp" +#include "src/tile.hpp" +#include "src/tile-iterator.hpp" +#include "src/chunk.hpp" +#include "src/world.hpp" #include "loader/loader.hpp" -#include "tile-iterator.hpp" #include <Corrade/Containers/StringView.h> #include <Corrade/Utility/Path.h> diff --git a/test/path-search-result.cpp b/test/path-search-result.cpp index 427de52a..705eca78 100644 --- a/test/path-search-result.cpp +++ b/test/path-search-result.cpp @@ -1,6 +1,6 @@ #include "app.hpp" #include "compat/assert.hpp" -#include "path-search-result.hpp" +#include "src/path-search-result.hpp" namespace floormat { diff --git a/test/tile-iter.cpp b/test/tile-iter.cpp index 5248f7ce..086fd3ce 100644 --- a/test/tile-iter.cpp +++ b/test/tile-iter.cpp @@ -1,7 +1,7 @@ #include "app.hpp" -#include "chunk.hpp" -#include "world.hpp" -#include "tile-iterator.hpp" +#include "src/chunk.hpp" +#include "src/world.hpp" +#include "src/tile-iterator.hpp" namespace floormat { static inline bool always_false() |
