mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
29 lines
645 B
Makefile
29 lines
645 B
Makefile
apps += Calculation::App
|
|
app_headers += apps/calculation/app.h
|
|
|
|
app_src += $(addprefix apps/calculation/,\
|
|
app.cpp \
|
|
calculation.cpp \
|
|
calculation_store.cpp \
|
|
edit_expression_controller.cpp \
|
|
expression_field.cpp \
|
|
history_view_cell.cpp \
|
|
history_controller.cpp \
|
|
scrollable_expression_view.cpp \
|
|
selectable_table_view.cpp \
|
|
)
|
|
|
|
i18n_files += $(addprefix apps/calculation/,\
|
|
base.de.i18n\
|
|
base.en.i18n\
|
|
base.es.i18n\
|
|
base.fr.i18n\
|
|
base.pt.i18n\
|
|
)
|
|
|
|
tests += $(addprefix apps/calculation/test/,\
|
|
calculation_store.cpp\
|
|
)
|
|
|
|
$(eval $(call depends_on_image,apps/calculation/app.cpp,apps/calculation/calculation_icon.png))
|