Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config BR2_PACKAGE_SDL_IMAGE
  2. bool "SDL_image"
  3. depends on BR2_PACKAGE_SDL
  4. help
  5. SDL_image is an image file loading library. It loads images
  6. as SDL surfaces, and supports the following formats:
  7. BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.
  8. http://www.libsdl.org/projects/SDL_image/
  9. menu "SDL_image file format support"
  10. depends on BR2_PACKAGE_SDL_IMAGE
  11. config BR2_PACKAGE_SDL_IMAGE_BMP
  12. bool "enable BMP file format support"
  13. default y
  14. config BR2_PACKAGE_SDL_IMAGE_GIF
  15. bool "enable GIF file format support"
  16. config BR2_PACKAGE_SDL_IMAGE_JPEG
  17. bool "enable JPEG file format support"
  18. select BR2_PACKAGE_JPEG
  19. config BR2_PACKAGE_SDL_IMAGE_LBM
  20. bool "enable LBM file format support"
  21. config BR2_PACKAGE_SDL_IMAGE_PCX
  22. bool "enable PCX file format support"
  23. config BR2_PACKAGE_SDL_IMAGE_PNG
  24. bool "enable PNG file format support"
  25. select BR2_PACKAGE_LIBPNG
  26. config BR2_PACKAGE_SDL_IMAGE_PNM
  27. bool "enable PNM file format support"
  28. config BR2_PACKAGE_SDL_IMAGE_TARGA
  29. bool "enable TARGA format support"
  30. config BR2_PACKAGE_SDL_IMAGE_TIFF
  31. bool "enable TIFF file format support"
  32. select BR2_PACKAGE_TIFF
  33. config BR2_PACKAGE_SDL_IMAGE_XCF
  34. bool "enable XCF file format support"
  35. config BR2_PACKAGE_SDL_IMAGE_XPM
  36. bool "enable XPM format support"
  37. config BR2_PACKAGE_SDL_IMAGE_XV
  38. bool "enable XV file format support"
  39. endmenu