Files
Upsilon/apps/calculation/Makefile
Romain Goyet ada205b1a7 [build] Use variants
- Move helpers functions into build/helpers.mak
- Move official warning into official targets only
2020-04-03 22:26:55 -04:00

48 lines
1.5 KiB
Makefile
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
apps += Calculation::App
app_headers += apps/calculation/app.h
app_calculation_test_src += $(addprefix apps/calculation/,\
calculation.cpp \
calculation_store.cpp \
)
app_calculation_src = $(addprefix apps/calculation/,\
additional_outputs/complex_graph_cell.cpp \
additional_outputs/complex_model.cpp \
additional_outputs/complex_list_controller.cpp \
additional_outputs/expression_with_equal_sign_view.cpp \
additional_outputs/expressions_list_controller.cpp \
additional_outputs/illustrated_list_controller.cpp \
additional_outputs/illustration_cell.cpp \
additional_outputs/integer_list_controller.cpp \
additional_outputs/scrollable_three_expressions_cell.cpp \
additional_outputs/list_controller.cpp \
additional_outputs/rational_list_controller.cpp \
additional_outputs/trigonometry_graph_cell.cpp \
additional_outputs/trigonometry_list_controller.cpp \
additional_outputs/trigonometry_model.cpp \
app.cpp \
edit_expression_controller.cpp \
expression_field.cpp \
history_view_cell.cpp \
history_controller.cpp \
selectable_table_view.cpp \
)
app_calculation_src += $(app_calculation_test_src)
apps_src += $(app_calculation_src)
i18n_files += $(addprefix apps/calculation/,\
base.de.i18n\
base.en.i18n\
base.es.i18n\
base.fr.i18n\
base.pt.i18n\
)
tests_src += $(addprefix apps/calculation/test/,\
calculation_store.cpp\
)
$(eval $(call depends_on_image,apps/calculation/app.cpp,apps/calculation/calculation_icon.png))