2016-07-26 22:29:51 +02:00
|
|
|
config BR2_PACKAGE_STELLA
|
|
|
|
bool "stella"
|
|
|
|
depends on !BR2_STATIC_LIBS # sdl2
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2017-09-09 13:05:36 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2017-08-06 16:52:28 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
2017-04-22 19:18:05 +02:00
|
|
|
select BR2_PACKAGE_SDL2
|
|
|
|
select BR2_PACKAGE_LIBPNG
|
|
|
|
select BR2_PACKAGE_ZLIB
|
2016-07-26 22:29:51 +02:00
|
|
|
help
|
|
|
|
Stella is a multi-platform Atari 2600 VCS emulator.
|
|
|
|
|
2017-05-29 21:07:36 +02:00
|
|
|
https://stella-emu.github.io/
|
2016-07-26 22:29:51 +02:00
|
|
|
|
2017-09-09 13:05:36 +02:00
|
|
|
comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.9"
|
2016-07-26 22:29:51 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
2017-09-09 13:05:36 +02:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
2017-08-06 16:52:28 +02:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|