diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-15 02:17:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-15 02:17:22 +0300 |
commit | 5273b0bc8dcc2adbf8557a4008c63e50955884fe (patch) | |
tree | 016a51b1411bf175d899dd1ba1944d123bcc6f2d | |
parent | 4a34b6a722bd86342db71decbd20ae7fac673088 (diff) | |
download | plus-5273b0bc8dcc2adbf8557a4008c63e50955884fe.tar.gz plus-5273b0bc8dcc2adbf8557a4008c63e50955884fe.tar.bz2 plus-5273b0bc8dcc2adbf8557a4008c63e50955884fe.tar.xz plus-5273b0bc8dcc2adbf8557a4008c63e50955884fe.zip |
Fix tests compilation without SDL2.
-rw-r--r-- | src/integrity_unittest.cc | 4 | ||||
-rw-r--r-- | src/resources/dye/dyepalette_unittest.cc | 4 | ||||
-rw-r--r-- | src/resources/sprite/animatedsprite_unittest.cc | 4 | ||||
-rw-r--r-- | src/utils/chatutils_unittest.cc | 4 | ||||
-rw-r--r-- | src/utils/files_unittest.cc | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc index bf2203847..0c61a15a4 100644 --- a/src/integrity_unittest.cc +++ b/src/integrity_unittest.cc @@ -34,6 +34,10 @@ #include "utils/env.h" #include "utils/physfstools.h" +#ifndef USE_SDL2 +#include <SDL.h> +#endif // USE_SDL2 + #include "debug.h" namespace diff --git a/src/resources/dye/dyepalette_unittest.cc b/src/resources/dye/dyepalette_unittest.cc index 3de2b1c3b..8689cdf6f 100644 --- a/src/resources/dye/dyepalette_unittest.cc +++ b/src/resources/dye/dyepalette_unittest.cc @@ -36,6 +36,10 @@ #include "utils/env.h" #include "utils/physfstools.h" +#ifndef USE_SDL2 +#include <SDL.h> +#endif // USE_SDL2 + #include "debug.h" TEST_CASE("DyePalette tests") diff --git a/src/resources/sprite/animatedsprite_unittest.cc b/src/resources/sprite/animatedsprite_unittest.cc index 1a77ea38f..8601bed17 100644 --- a/src/resources/sprite/animatedsprite_unittest.cc +++ b/src/resources/sprite/animatedsprite_unittest.cc @@ -40,6 +40,10 @@ #include "utils/mrand.h" #include "utils/physfstools.h" +#ifndef USE_SDL2 +#include <SDL.h> +#endif // USE_SDL2 + #include "debug.h" TEST_CASE("AnimatedSprite tests", "animatedsprite") diff --git a/src/utils/chatutils_unittest.cc b/src/utils/chatutils_unittest.cc index af4cb388a..d4da5e453 100644 --- a/src/utils/chatutils_unittest.cc +++ b/src/utils/chatutils_unittest.cc @@ -37,6 +37,10 @@ #include "resources/resourcemanager/resourcemanager.h" +#ifndef USE_SDL2 +#include <SDL.h> +#endif // USE_SDL2 + #include "debug.h" TEST_CASE("chatutils replaceVars") diff --git a/src/utils/files_unittest.cc b/src/utils/files_unittest.cc index 5ccfe0e04..db56e03e9 100644 --- a/src/utils/files_unittest.cc +++ b/src/utils/files_unittest.cc @@ -27,6 +27,10 @@ #include "resources/resourcemanager/resourcemanager.h" +#ifndef USE_SDL2 +#include <SDL.h> +#endif // USE_SDL2 + #include "debug.h" TEST_CASE("Files renameFile") |