mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
24 lines
559 B
Makefile
24 lines
559 B
Makefile
snapshots += Calculation::App::Snapshot
|
|
snapshot_headers += apps/calculation/app.h
|
|
|
|
app_objs += $(addprefix apps/calculation/,\
|
|
app.o\
|
|
calculation.o\
|
|
calculation_store.o\
|
|
edit_expression_controller.o\
|
|
history_view_cell.o\
|
|
history_controller.o\
|
|
local_context.o\
|
|
scrollable_expression_view.o\
|
|
selectable_table_view.o\
|
|
text_field.o\
|
|
)
|
|
|
|
tests += $(addprefix apps/calculation/test/,\
|
|
calculation_store.cpp\
|
|
)
|
|
test_objs += $(addprefix apps/calculation/, calculation.o calculation_store.o)
|
|
|
|
app_images += apps/calculation/calculation_icon.png
|
|
|