mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
prints logf messages to the screen buffer and dumps the output to .rockbox/db_commit_log.txt logs warnings about tags that can't be displayed by the current font adds an option to the tagcache using the file .rockbox/database_commit.ignore to prevent auto commit Change-Id: Ib381b3b6d9dd19d76c95d0e87e605f7378e29674
28 lines
577 B
Text
28 lines
577 B
Text
#if !defined(HAVE_TOUCHSCREEN) || defined(DX50) || defined(DX90)
|
|
/* 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 */
|