mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
Classes LanguageController and CountryController have been fused into one class LocalizationController, as they were very similar. This allows the Settings and OnBoarding apps to only keep one controller for both functions. Change-Id: Ic23f300c37122249d34caaf18a633b5815240a78
15 lines
394 B
Makefile
15 lines
394 B
Makefile
app_on_boarding_src = $(addprefix apps/on_boarding/,\
|
|
app.cpp \
|
|
logo_controller.cpp \
|
|
logo_view.cpp \
|
|
localization_controller.cpp \
|
|
pop_up_controller.cpp \
|
|
power_on_self_test.cpp \
|
|
)
|
|
|
|
apps_src += $(app_on_boarding_src)
|
|
|
|
i18n_files += $(call i18n_without_universal_for,on_boarding/base)
|
|
|
|
$(eval $(call depends_on_image,apps/on_boarding/logo_view.cpp,apps/on_boarding/logo_icon.png))
|