forked from jaildesigner-jailgames/coffee_crisis
21 lines
343 B
C
21 lines
343 B
C
#ifdef _WIN64
|
|
#include "C:\mingw_dev_lib\include\SDL2\SDL.h"
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include "C:\mingw_dev_lib\include\SDL2\SDL.h"
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
#include "/Library/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h"
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
#ifdef __MIPSEL__
|
|
#include "SDL.h"
|
|
#else
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
#endif
|
|
|
|
#define UNUSED |