summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/SOURCES6
-rw-r--r--apps/plugins/metronome.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index edc8f9f9c2..c373d72dfe 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -7,7 +7,6 @@ dict.c
7favorites.c 7favorites.c
8firmware_flash.c 8firmware_flash.c
9logo.c 9logo.c
10metronome.c
11mosaique.c 10mosaique.c
12random_folder_advance_config.c 11random_folder_advance_config.c
13#if (LCD_WIDTH != 240) && ((LCD_WIDTH != 128) || (LCD_HEIGHT != 64)) && !defined(SANSA_E200) 12#if (LCD_WIDTH != 240) && ((LCD_WIDTH != 128) || (LCD_HEIGHT != 64)) && !defined(SANSA_E200)
@@ -22,6 +21,11 @@ stopwatch.c
22vbrfix.c 21vbrfix.c
23viewer.c 22viewer.c
24 23
24/* plugins built for all targets, but not for the simulator */
25#if !defined(SIMULATOR)
26metronome.c
27#endif
28
25#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)) && !defined(SIMULATOR) 29#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)) && !defined(SIMULATOR)
26wavplay.c 30wavplay.c
27#endif 31#endif
diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c
index 19150bad60..7a975f434d 100644
--- a/apps/plugins/metronome.c
+++ b/apps/plugins/metronome.c
@@ -18,8 +18,6 @@
18 ****************************************************************************/ 18 ****************************************************************************/
19#include "plugin.h" 19#include "plugin.h"
20 20
21#if !defined(SIMULATOR)
22
23PLUGIN_HEADER 21PLUGIN_HEADER
24 22
25/* variable button definitions */ 23/* variable button definitions */
@@ -1081,4 +1079,4 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter){
1081 } 1079 }
1082 } 1080 }
1083} 1081}
1084#endif /* #ifndef SIMULATOR */ 1082