mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
dcf31c6a1e
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
19 lines
580 B
Plaintext
19 lines
580 B
Plaintext
config BR2_PACKAGE_STELLA
|
|
bool "stella"
|
|
depends on !BR2_STATIC_LIBS # sdl2
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
|
select BR2_PACKAGE_SDL2
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Stella is a multi-platform Atari 2600 VCS emulator.
|
|
|
|
https://stella-emu.github.io/
|
|
|
|
comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.9"
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|