summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-11-14 21:38:30 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-09 12:41:11 -0700
commitc0095f690fe2a0b56a6c5d52e03a3b3130e9f6b6 (patch)
tree40b53faf3bfc396edaf9c2fe307ec2adf9e76aad /commands
parent5601104ba52e61a09dac822f52090f83e591253e (diff)
downloadsubsurface-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 'commands')
-rw-r--r--commands/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/CMakeLists.txt b/commands/CMakeLists.txt
index dcf7f3892..6d6ee1d64 100644
--- a/commands/CMakeLists.txt
+++ b/commands/CMakeLists.txt
@@ -18,7 +18,7 @@ set(SUBSURFACE_GENERIC_COMMANDS_SRCS
if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "DesktopExecutable")
add_library(subsurface_commands_desktop STATIC ${SUBSURFACE_GENERIC_COMMANDS_SRCS})
target_link_libraries(subsurface_commands_desktop ${QT_LIBRARIES})
-#elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable")
-# add_library(subsurface_commands_mobile STATIC ${SUBSURFACE_GENERIC_COMMANDS_SRCS})
-# target_link_libraries(subsurface_commands_mobile ${QT_LIBRARIES})
+elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable")
+ add_library(subsurface_commands_mobile STATIC ${SUBSURFACE_GENERIC_COMMANDS_SRCS})
+ target_link_libraries(subsurface_commands_mobile ${QT_LIBRARIES})
endif()