fix: vcpkg stores SDL.h under SDL2 folder

macOS and Linux seem to not, so in order to get CI working again I
should make use of the preprocessor.

FIXME: I think this makes vcpkg a **hard** requirement which perhaps
isn't ideal if I want ZBA to be as easy to build as possible. I should
try ensuring that building w/out vcpkg works as well
This commit is contained in:
Rekai Nyangadzayi Musuka 2023-01-01 12:54:18 -06:00
parent eb61494cab
commit 12e480f30d
1 changed files with 8 additions and 2 deletions

View File

@ -67,8 +67,14 @@
#include "imgui_impl_sdl.h"
// SDL
#include <SDL.h>
#include <SDL_syswm.h>
#if defined(__WIN32__)
#include <SDL2/SDL.h>
#include <SDL2/SDL_syswm.h>
#else
#include <SDL.h>
#include <SDL_syswm.h>
#endif
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif