mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
Original author Melissa Autumn (https://codeberg.org/oopsallnaps/rockbox-hibyos) with contributions from Marc Aarts. Adaptation to Rockbox standards by Marc Aarts Change-Id: I09e5af7ba0a75c648e4b9fd424badc2d3665c943
28 lines
622 B
Text
28 lines
622 B
Text
#if !defined(HAVE_TOUCHSCREEN) || defined(DX50) || defined(DX90) || defined(HIBY_R3PROII) || defined(HIBY_R1)
|
|
/* This is for devices having a keypad, running RockBox as an application */
|
|
#include "SUBDIRS"
|
|
|
|
#else
|
|
/* For all targets with a bitmap display and a touchscreen
|
|
* In fact, most of the plugins aren't supposed to be used on a touch(mouse) device
|
|
*/
|
|
lua
|
|
lua_scripts
|
|
|
|
#if PLUGIN_BUFFER_SIZE > 0x20000
|
|
fft
|
|
#endif
|
|
|
|
reversi
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
pictureflow
|
|
tagcache
|
|
#endif
|
|
|
|
/* For all the swcodec targets */
|
|
#if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
|
|
mikmod
|
|
#endif
|
|
|
|
#endif /* HAVE_TOUCHSCREEN */
|