Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2021-01-27 19:15:21 +0300
committerAleksandr Zatsepin <alexander.zatsepin@mail.ru>2021-03-30 13:59:46 +0300
commit975980789dca2783d905fa4af7b24cbdece7c330 (patch)
tree192898052692de08c3496dd43f5f5fa10162c9cd
parentb83073458fa4b177cddd1ed18b5b03ad54a8b137 (diff)
[storage] cmake fix
-rw-r--r--storage/CMakeLists.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/storage/CMakeLists.txt b/storage/CMakeLists.txt
index 9510688d80..bb367c1882 100644
--- a/storage/CMakeLists.txt
+++ b/storage/CMakeLists.txt
@@ -51,20 +51,19 @@ set(
storage_helpers.hpp
)
-if (${PLATFORM_IPHONE} OR ${PLATFORM_ANDROID})
+if (${PLATFORM_ANDROID})
append(
SRC
background_downloading/downloader_queue.hpp
)
-elseif (${PLATFORM_IPHONE})
+elseif(${PLATFORM_IPHONE})
append(
SRC
background_downloading/downloader_adapter_ios.h
background_downloading/downloader_adapter_ios.mm
+ background_downloading/downloader_queue.hpp
background_downloading/downloader_subscriber_adapter_ios.h
background_downloading/downloader_subscriber_adapter_ios.mm
- background_downloading/downloader_queue_ios.hpp
- background_downloading/downloader_queue_ios.cpp
)
else()
append(