1config BR2_PACKAGE_FLARE_ENGINE
2	bool "flare-engine"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on !BR2_STATIC_LIBS # SDL2
5	select BR2_PACKAGE_LIBPNG # SDL2_IMAGE needs libpng support
6	select BR2_PACKAGE_SDL2
7	select BR2_PACKAGE_SDL2_IMAGE
8	select BR2_PACKAGE_SDL2_MIXER
9	select BR2_PACKAGE_SDL2_TTF
10	select BR2_PACKAGE_TREMOR # for SDL2_mixer ogg support
11	help
12	  Flare (Free Libre Action Roleplaying Engine) is a simple game
13	  engine built to handle a very specific kind of game:
14	  single-player 2D action RPGs.
15	  Flare is not a reimplementation of an existing game or engine.
16	  It is a tribute to and exploration of the action RPG genre.
17
18	  https://flarerpg.org
19
20comment "flare-engine needs a toolchain w/ C++, dynamic library"
21	depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
22