e3a3e2c9c2
Use own plugins/SOURCES and plugins/SUBDIRS file to avoid ifdef hell for disabled plugins without a keymap. This finally brings the credits screen to RaaA. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29392 a1c6a512-1295-4272-9138-f99709370657
17 lines
316 B
Text
17 lines
316 B
Text
/* For all targets with a bitmap display */
|
|
#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 */
|