SDL_config.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. SDL - Simple DirectMedia Layer
  3. Copyright (C) 1997-2009 Sam Lantinga
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  15. Sam Lantinga
  16. slouken@libsdl.org
  17. */
  18. #ifndef _SDL_config_h
  19. #define _SDL_config_h
  20. #include "SDL_platform.h"
  21. /* Add any platform that doesn't build using the configure system */
  22. #if defined(__DREAMCAST__)
  23. #include "SDL_config_dreamcast.h"
  24. #elif defined(__MACOS__)
  25. #include "SDL_config_macos.h"
  26. #elif defined(__MACOSX__)
  27. #include "SDL_config_macosx.h"
  28. #elif defined(__SYMBIAN32__)
  29. #include "SDL_config_symbian.h" /* must be before win32! */
  30. #elif defined(__WIN32__)
  31. #include "SDL_config_win32.h"
  32. #elif defined(__OS2__)
  33. #include "SDL_config_os2.h"
  34. #else
  35. #include "SDL_config_minimal.h"
  36. #endif /* platform config */
  37. #endif /* _SDL_config_h */