two new games & music player patch

This commit is contained in:
Eng1n33r
2022-06-21 05:50:34 +03:00
parent 79f216ec48
commit eb625f971f
10 changed files with 817 additions and 8 deletions

View File

@@ -51,9 +51,13 @@ APP_SPECTRUM_ANALYZER = 1
# Plugins
APP_MUSIC_PLAYER = 1
APP_SNAKE_GAME = 1
APP_WAV_PLAYER = 1
# Games
APP_SNAKE_GAME = 1
APP_TETRIS_GAME = 1
APP_TICTACTOE_GAME = 1
APP_ARKANOID_GAME = 1
# Debug
APP_ACCESSOR = 1
@@ -278,6 +282,18 @@ CFLAGS += -DAPP_SPECTRUM_ANALYZER
SRV_GUI = 1
endif
APP_TICTACTOE_GAME ?= 0
ifeq ($(APP_TICTACTOE_GAME),1)
CFLAGS += -DAPP_TICTACTOE_GAME
SRV_GUI = 1
endif
APP_ARKANOID_GAME ?= 0
ifeq ($(APP_ARKANOID_GAME),1)
CFLAGS += -DAPP_ARKANOID_GAME
SRV_GUI = 1
endif
APP_IBUTTON ?= 0
ifeq ($(APP_IBUTTON), 1)
CFLAGS += -DAPP_IBUTTON