diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-03-02 08:41:00 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-10 09:25:57 -0700 |
commit | 053356c49b34b5183ddb2e394bb916470115295b (patch) | |
tree | 650c84c2956b21f457ff7ec4f556c9eb07d8602e /CMakeLists.txt | |
parent | 0720e74c1afc5cbd51593db08add58bc277213c8 (diff) | |
download | subsurface-053356c49b34b5183ddb2e394bb916470115295b.tar.gz |
build-system: remove pointless distinction between desktop and mobile
It's the same sources, the same library.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cdc17066b..95a862616 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -314,7 +314,7 @@ if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable") subsurface_mapwidget subsurface_backend_shared subsurface_models_mobile - subsurface_commands_mobile + subsurface_commands subsurface_corelib ${SUBSURFACE_LINK_LIBRARIES} ) @@ -339,7 +339,7 @@ elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "DesktopExecutable") subsurface_mapwidget subsurface_backend_shared subsurface_models_desktop - subsurface_commands_desktop + subsurface_commands subsurface_corelib ${SUBSURFACE_LINK_LIBRARIES} ) |