SDL_config.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #ifndef _SDL_config_h
  19. #define _SDL_config_h
  20. #include "SDL_platform.h"
  21. /**
  22. * \file SDL_config.h
  23. */
  24. /* Add any platform that doesn't build using the configure system. */
  25. #ifdef USING_PREMAKE_CONFIG_H
  26. #include "SDL_config_premake.h"
  27. #elif defined(__WIN32__)
  28. #include "SDL_config_windows.h"
  29. #elif defined(__WINRT__)
  30. #include "SDL_config_winrt.h"
  31. #elif defined(__MACOSX__)
  32. #include "SDL_config_macosx.h"
  33. #elif defined(__IPHONEOS__)
  34. #include "SDL_config_iphoneos.h"
  35. #elif defined(__ANDROID__)
  36. #include "SDL_config_android.h"
  37. #elif defined(__PSP__)
  38. #include "SDL_config_psp.h"
  39. #else
  40. /* This is a minimal configuration just to get SDL running on new platforms */
  41. #include "SDL_config_minimal.h"
  42. #endif /* platform config */
  43. #ifdef USING_GENERATED_CONFIG_H
  44. #error Wrong SDL_config.h, check your include path?
  45. #endif
  46. #endif /* _SDL_config_h */