mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
39 lines
981 B
Makefile
39 lines
981 B
Makefile
apps += Statistics::App
|
|
app_headers += apps/statistics/app.h
|
|
|
|
app_statistics_test_src = $(addprefix apps/statistics/,\
|
|
store.cpp \
|
|
)
|
|
|
|
app_statistics_src = $(addprefix apps/statistics/,\
|
|
app.cpp \
|
|
box_axis_view.cpp \
|
|
box_banner_view.cpp \
|
|
box_controller.cpp \
|
|
box_range.cpp \
|
|
box_view.cpp \
|
|
calculation_controller.cpp \
|
|
calculation_selectable_table_view.cpp \
|
|
histogram_banner_view.cpp \
|
|
histogram_controller.cpp \
|
|
histogram_parameter_controller.cpp \
|
|
histogram_view.cpp \
|
|
multiple_boxes_view.cpp \
|
|
multiple_data_view.cpp \
|
|
multiple_data_view_controller.cpp \
|
|
multiple_histograms_view.cpp \
|
|
statistics_context.cpp \
|
|
store_controller.cpp \
|
|
)
|
|
|
|
app_statistics_src += $(app_statistics_test_src)
|
|
apps_src += $(app_statistics_src)
|
|
|
|
i18n_files += $(call i18n_without_universal_for,statistics/base)
|
|
|
|
tests_src += $(addprefix apps/statistics/test/,\
|
|
store.cpp\
|
|
)
|
|
|
|
$(eval $(call depends_on_image,apps/statistics/app.cpp,apps/statistics/stat_icon.png))
|