Files
Upsilon/apps/graph/Makefile
Gabriel Ozouf 0a6ac0b40b [apps/graph] Remove tests on ranges
As zooming has moved to Poincare, so will the tests.

Change-Id: I6c1fe581edc903369779e46a295447273a89e517
2020-11-04 15:58:20 +01:00

48 lines
1.4 KiB
Makefile

apps += Graph::App
app_headers += apps/graph/app.h
app_graph_test_src = $(addprefix apps/graph/,\
continuous_function_store.cpp \
)
app_graph_src = $(addprefix apps/graph/,\
app.cpp \
graph/banner_view.cpp \
graph/calculation_graph_controller.cpp \
graph/calculation_parameter_controller.cpp \
graph/curve_parameter_controller.cpp \
graph/extremum_graph_controller.cpp \
graph/graph_controller.cpp \
graph/graph_controller_helper.cpp \
graph/graph_view.cpp \
graph/preimage_graph_controller.cpp\
graph/preimage_parameter_controller.cpp\
graph/integral_graph_controller.cpp \
graph/intersection_graph_controller.cpp \
graph/root_graph_controller.cpp \
graph/tangent_graph_controller.cpp \
list/domain_parameter_controller.cpp \
list/list_controller.cpp \
list/list_parameter_controller.cpp \
list/text_field_function_title_cell.cpp \
list/type_helper.cpp \
list/type_parameter_controller.cpp \
values/abscissa_title_cell.cpp \
values/derivative_parameter_controller.cpp \
values/function_parameter_controller.cpp \
values/interval_parameter_selector_controller.cpp \
values/values_controller.cpp \
)
app_graph_src += $(app_graph_test_src)
apps_src += $(app_graph_src)
i18n_files += $(call i18n_without_universal_for,graph/base)
tests_src += $(addprefix apps/graph/test/,\
caching.cpp \
helper.cpp \
)
$(eval $(call depends_on_image,apps/graph/app.cpp,apps/graph/graph_icon.png))