Files
Upsilon/apps/shared/Makefile
Gabriel Ozouf 552dca9494 [apps/shared] Implemented function memoization
ContinuousFunction now has an attribute of type ContinuousFunctionCache,
implementing methods to store and retrieve 320 float values, in order to
speed up function display in Graph.

Change-Id: I6f7ccdf3ae3c6dd8b08b93d786c8d0be7aa4dee8
2020-11-04 14:45:35 +01:00

104 lines
3.0 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.
app_shared_test_src = $(addprefix apps/shared/,\
continuous_function.cpp\
curve_view_range.cpp \
curve_view.cpp \
dots.cpp \
double_pair_store.cpp \
expression_model.cpp \
expression_model_handle.cpp \
expression_model_store.cpp \
function.cpp \
global_context.cpp \
interactive_curve_view_range_delegate.cpp \
interactive_curve_view_range.cpp \
labeled_curve_view.cpp \
memoized_curve_view_range.cpp \
range_1D.cpp \
toolbox_helpers.cpp \
zoom_and_pan_curve_view_controller.cpp \
zoom_curve_view_controller.cpp \
)
app_shared_src = $(addprefix apps/shared/,\
banner_view.cpp \
buffer_function_title_cell.cpp \
buffer_text_view_with_text_field.cpp \
button_with_separator.cpp \
continuous_function_cache.cpp \
cursor_view.cpp \
curve_view_cursor.cpp \
editable_cell_table_view_controller.cpp \
expression_field_delegate_app.cpp \
expression_model_list_controller.cpp \
float_parameter_controller.cpp \
function_app.cpp \
function_banner_delegate.cpp \
function_curve_parameter_controller.cpp \
function_expression_cell.cpp \
function_graph_controller.cpp \
function_graph_view.cpp \
function_go_to_parameter_controller.cpp \
function_list_controller.cpp \
function_store.cpp \
function_title_cell.cpp \
go_to_parameter_controller.cpp \
hideable_even_odd_buffer_text_cell.cpp \
hideable_even_odd_cell.cpp \
hideable_even_odd_editable_text_cell.cpp \
initialisation_parameter_controller.cpp \
input_event_handler_delegate_app.cpp \
interactive_curve_view_controller.cpp \
interval.cpp \
interval_parameter_controller.cpp \
language_controller.cpp \
layout_field_delegate.cpp \
list_parameter_controller.cpp \
message_view.cpp \
ok_view.cpp \
parameter_text_field_delegate.cpp \
post_and_hardware_tests.cpp \
range_parameter_controller.cpp \
regular_table_view_data_source.cpp \
round_cursor_view.cpp \
scrollable_multiple_expressions_view.cpp \
scrollable_two_expressions_cell.cpp \
separable.cpp \
separator_even_odd_buffer_text_cell.cpp \
simple_interactive_curve_view_controller.cpp \
store_cell.cpp \
store_controller.cpp \
store_parameter_controller.cpp \
store_selectable_table_view.cpp \
store_title_cell.cpp \
sum_graph_controller.cpp \
tab_table_controller.cpp \
text_field_delegate.cpp \
text_field_delegate_app.cpp \
text_field_with_extension.cpp \
text_helpers.cpp \
values_controller.cpp \
values_function_parameter_controller.cpp \
values_parameter_controller.cpp \
vertical_cursor_view.cpp \
xy_banner_view.cpp\
zoom_parameter_controller.cpp \
)
app_shared_src += $(app_shared_test_src)
apps_src += $(app_shared_src)
# The .cpp files could also be added to app_shared_test_src in their respective makefiles
# -> it would then be impossible to run the shared test alone
app_shared_test_src += $(addprefix apps/graph/,\
continuous_function_store.cpp\
)
app_shared_test_src += $(addprefix apps/sequence/,\
sequence.cpp\
sequence_store.cpp\
)
tests_src += $(addprefix apps/shared/test/,\
function_alignement.cpp\
)