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:
authorTimofey <t.danshin@corp.mail.ru>2016-09-05 17:43:26 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-09-13 16:50:48 +0300
commit603286f8893542bbed047a3e917d7c4a1a2772cd (patch)
tree2a7414d4d694db2af8aefc07360c7c1f3a418e67 /storage
parent9a1c742b1590da733e577211f704aba9bf91d1dd (diff)
Storage
Diffstat (limited to 'storage')
-rw-r--r--storage/CMakeLists.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/storage/CMakeLists.txt b/storage/CMakeLists.txt
new file mode 100644
index 0000000000..d4dba0e2a7
--- /dev/null
+++ b/storage/CMakeLists.txt
@@ -0,0 +1,35 @@
+#add_subdirectory(storage_tests)
+
+set(
+ SRC
+ app_store.hpp
+ country.cpp
+ country.hpp
+ country_decl.cpp
+ country_decl.hpp
+ country_info_getter.cpp
+ country_info_getter.hpp
+ country_name_getter.cpp
+ country_name_getter.hpp
+ country_polygon.hpp
+ country_tree.hpp
+ downloader_search_params.hpp
+ downloading_policy.cpp
+ downloading_policy.hpp
+ http_map_files_downloader.cpp
+ http_map_files_downloader.hpp
+ index.cpp
+ index.hpp
+ map_files_downloader.hpp
+ queued_country.cpp
+ queued_country.hpp
+ storage.cpp
+ storage.hpp
+ storage_defines.cpp
+ storage_defines.hpp
+ storage_helpers.cpp
+ storage_helpers.hpp
+
+)
+
+omim_add_library(storage ${SRC})