diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-11-14 21:38:30 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-09 12:41:11 -0700 |
commit | c0095f690fe2a0b56a6c5d52e03a3b3130e9f6b6 (patch) | |
tree | 40b53faf3bfc396edaf9c2fe307ec2adf9e76aad /packaging/ios | |
parent | 5601104ba52e61a09dac822f52090f83e591253e (diff) | |
download | subsurface-c0095f690fe2a0b56a6c5d52e03a3b3130e9f6b6.tar.gz |
mobile/undo: compile undo commands and call undo command for deletion.
First steps towards full undo on mobile.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios')
-rw-r--r-- | packaging/ios/Subsurface-mobile.pro | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packaging/ios/Subsurface-mobile.pro b/packaging/ios/Subsurface-mobile.pro index cdd612880..b7bd121be 100644 --- a/packaging/ios/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile.pro @@ -15,6 +15,12 @@ QTQUICK_COMPILER_SKIPPED_RESOURCES += SOURCES += ../../subsurface-mobile-main.cpp \ ../../subsurface-helper.cpp \ ../../map-widget/qmlmapwidgethelper.cpp \ + ../../commands/command_base.cpp \ + ../../commands/command.cpp \ + ../../commands/command_divelist.cpp \ + ../../commands/command_divesite.cpp \ + ../../commands/command_edit.cpp \ + ../../commands/command_edit_trip.cpp \ ../../core/cloudstorage.cpp \ ../../core/configuredivecomputerthreads.cpp \ ../../core/devicedetails.cpp \ @@ -174,6 +180,12 @@ INCLUDEPATH += ../../../install-root/ios/include/ \ /usr/include/libxml2 HEADERS += \ + ../../commands/command_base.h \ + ../../commands/command.h \ + ../../commands/command_divelist.h \ + ../../commands/command_divesite.h \ + ../../commands/command_edit.h \ + ../../commands/command_edit_trip.h \ ../../core/libdivecomputer.h \ ../../core/cloudstorage.h \ ../../core/configuredivecomputerthreads.h \ |