Config.in 787 B

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_LBREAKOUT2
  2. bool "LBreakout2"
  3. select BR2_PACKAGE_SDL
  4. select BR2_PACKAGE_LIBPNG
  5. help
  6. LBreakout2 is the successor to LBreakout, a breakout-style
  7. arcade game in the manner of Arkanoid. Requires SDL, libpng,
  8. and optionnally SDL_mixer/SDL_net.
  9. A display with minimum 640x480 resolution, a keyboard and a
  10. mouse are recommanded.
  11. http://lgames.sourceforge.net/index.php?project=LBreakout2
  12. if BR2_PACKAGE_LBREAKOUT2
  13. config BR2_PACKAGE_LBREAKOUT2_AUDIO
  14. bool "audio support"
  15. default y
  16. select BR2_PACKAGE_SDL_MIXER
  17. help
  18. Activates audio support in LBreakout2. Will add SDL_mixer.
  19. config BR2_PACKAGE_LBREAKOUT2_NET
  20. bool "network support"
  21. default y
  22. select BR2_PACKAGE_SDL_NET
  23. help
  24. Activates network support LBreakout2. Will add SDL_net.
  25. endif