a53d1c6dc5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31540 a1c6a512-1295-4272-9138-f99709370657
25 lines
577 B
Text
25 lines
577 B
Text
#ifndef HAVE_TOUCHSCREEN
|
|
/* 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
|
|
*/
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
pictureflow
|
|
#endif
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
/* For all the swcodec targets */
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
#if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
|
|
mikmod
|
|
#endif
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
#endif /* HAVE_TOUCHSCREEN */
|