mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
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/illustrated_list_controller.cpp \
|
||
additional_outputs/scrollable_input_exact_approximate_expressions_cell.cpp \
|
||
app.cpp \
|
||
edit_expression_controller.cpp \
|
||
expression_field.cpp \
|
||
history_view_cell.cpp \
|
||
history_controller.cpp \
|
||
scrollable_expression_view.cpp \
|
||
selectable_table_view.cpp \
|
||
)
|
||
|
||
app_calculation_src += $(app_calculation_test_src)
|
||
app_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))
|