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:
authorgreshilov <slovaricheg@gmail.com>2017-12-21 00:20:48 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-12-28 12:38:00 +0300
commit4e50a45aadfa0e89bd0e65f6d9342d1e2abc389f (patch)
tree7abb7d5fe5242245be11dce6a95c5b321aced030 /storage
parent266771ae02c3ba91031614209b202b7890cc29b3 (diff)
[qmake] Goodbye QMake!
+3party dirs +Rebased
Diffstat (limited to 'storage')
-rw-r--r--storage/storage.pro50
-rw-r--r--storage/storage_integration_tests/storage_integration_tests.pro39
-rw-r--r--storage/storage_tests/storage_tests.pro49
3 files changed, 0 insertions, 138 deletions
diff --git a/storage/storage.pro b/storage/storage.pro
deleted file mode 100644
index 6088b96108..0000000000
--- a/storage/storage.pro
+++ /dev/null
@@ -1,50 +0,0 @@
-# Storage library.
-
-TARGET = storage
-TEMPLATE = lib
-CONFIG += staticlib warn_on
-
-ROOT_DIR = ..
-
-include($$ROOT_DIR/common.pri)
-
-INCLUDEPATH += $$ROOT_DIR/3party/jansson/src
-
-HEADERS += \
- country.hpp \
- country_decl.hpp \
- country_info_getter.hpp \
- country_name_getter.hpp \
- country_parent_getter.hpp \
- country_polygon.hpp \
- country_tree.hpp \
- diff_scheme/diff_manager.hpp \
- diff_scheme/diff_scheme_checker.hpp \
- diff_scheme/diff_types.hpp \
- downloader_search_params.hpp \
- downloading_policy.hpp \
- http_map_files_downloader.hpp \
- index.hpp \
- map_files_downloader.hpp \
- queued_country.hpp \
- routing_helpers.hpp \
- storage.hpp \
- storage_defines.hpp \
- storage_helpers.hpp \
-
-SOURCES += \
- country.cpp \
- country_decl.cpp \
- country_info_getter.cpp \
- country_name_getter.cpp \
- country_parent_getter.cpp \
- diff_scheme/diff_manager.cpp \
- diff_scheme/diff_scheme_checker.cpp \
- downloading_policy.cpp \
- http_map_files_downloader.cpp \
- index.cpp \
- queued_country.cpp \
- routing_helpers.cpp \
- storage.cpp \
- storage_defines.cpp \
- storage_helpers.cpp \
diff --git a/storage/storage_integration_tests/storage_integration_tests.pro b/storage/storage_integration_tests/storage_integration_tests.pro
deleted file mode 100644
index 70ad3c0cad..0000000000
--- a/storage/storage_integration_tests/storage_integration_tests.pro
+++ /dev/null
@@ -1,39 +0,0 @@
-# Storage library tests.
-
-TARGET = storage_integration_tests
-CONFIG += console warn_on
-CONFIG -= app_bundle
-TEMPLATE = app
-
-ROOT_DIR = ../..
-DEPENDENCIES = map drape_frontend routing search storage tracking traffic routing_common transit ugc \
- indexer drape partners_api local_ads platform_tests_support platform editor \
- mwm_diff bsdiff opening_hours geometry coding base freetype expat jansson protobuf \
- osrm stats_client minizip succinct pugixml oauthcpp stb_image sdf_image icu agg
-
-include($$ROOT_DIR/common.pri)
-
-DEFINES *= OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP
-
-QT *= core
-
-macx-* {
- QT *= gui widgets network # needed for QApplication with event loop, to test async events (downloader, etc.)
- LIBS *= "-framework IOKit" "-framework QuartzCore" "-framework SystemConfiguration"
-}
-win32*|linux* {
- QT *= network
-}
-
-HEADERS += \
- test_defines.hpp
-
-SOURCES += \
- ../../testing/testingmain.cpp \
- migrate_tests.cpp \
- storage_3levels_tests.cpp \
- storage_downloading_tests.cpp \
- storage_group_download_tests.cpp \
- storage_http_tests.cpp \
- storage_update_tests.cpp \
- test_defines.cpp \
diff --git a/storage/storage_tests/storage_tests.pro b/storage/storage_tests/storage_tests.pro
deleted file mode 100644
index 4b914c238f..0000000000
--- a/storage/storage_tests/storage_tests.pro
+++ /dev/null
@@ -1,49 +0,0 @@
-# Storage library tests.
-
-TARGET = storage_tests
-CONFIG += console warn_on
-CONFIG -= app_bundle
-TEMPLATE = app
-
-ROOT_DIR = ../..
-
-macx*|win32*|linux* {
-DEPENDENCIES = generator_tests_support generator
-}
-
-DEPENDENCIES *= drape_frontend map routing traffic routing_common search storage indexer drape \
- platform_tests_support platform editor mwm_diff bsdiff opening_hours geometry \
- coding base freetype expat jansson tess2 protobuf osrm stats_client minizip \
- succinct pugixml oauthcpp stb_image sdf_image icu agg
-
-include($$ROOT_DIR/common.pri)
-
-DEFINES *= OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP
-
-QT *= core
-
-macx-* {
- QT *= gui widgets # needed for QApplication with event loop, to test async events (downloader, etc.)
- LIBS *= "-framework IOKit" "-framework QuartzCore" "-framework SystemConfiguration"
-}
-win32*|linux* {
- QT *= network
-}
-
-HEADERS += \
- fake_map_files_downloader.hpp \
- helpers.hpp \
- task_runner.hpp \
- test_map_files_downloader.hpp \
-
-SOURCES += \
- ../../testing/testingmain.cpp \
- country_info_getter_test.cpp \
- country_name_getter_test.cpp \
- fake_map_files_downloader.cpp \
- helpers.cpp \
- queued_country_tests.cpp \
- simple_tree_test.cpp \
- storage_tests.cpp \
- task_runner.cpp \
- test_map_files_downloader.cpp \