forked from jaildesigner-jailgames/jaildoctors_dilemma
22 lines
545 B
C
22 lines
545 B
C
#ifdef _WIN64
|
|
#include "C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++\SDL2\SDL.h"
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include "C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++\SDL2\SDL.h"
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
//#include "/Library/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h"
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
#ifdef __MIPSEL__
|
|
#include "SDL.h"
|
|
#else
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
#endif
|
|
|
|
#define UNUSED |