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
path: root/ugc
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 /ugc
parent266771ae02c3ba91031614209b202b7890cc29b3 (diff)
[qmake] Goodbye QMake!
+3party dirs +Rebased
Diffstat (limited to 'ugc')
-rw-r--r--ugc/ugc.pro30
-rw-r--r--ugc/ugc_tests/ugc_tests.pro30
2 files changed, 0 insertions, 60 deletions
diff --git a/ugc/ugc.pro b/ugc/ugc.pro
deleted file mode 100644
index 96cd9de6d8..0000000000
--- a/ugc/ugc.pro
+++ /dev/null
@@ -1,30 +0,0 @@
-# UGC library.
-
-TARGET = ugc
-TEMPLATE = lib
-CONFIG += staticlib warn_on
-
-ROOT_DIR = ..
-
-include($$ROOT_DIR/common.pri)
-
-INCLUDEPATH += $$ROOT_DIR/3party/jansson/src
-
-HEADERS += \
- api.hpp \
- binary/header_v0.hpp \
- binary/index_ugc.hpp \
- binary/serdes.hpp \
- binary/ugc_holder.hpp \
- binary/visitors.hpp \
- loader.hpp \
- serdes.hpp \
- serdes_json.hpp \
- storage.hpp \
- types.hpp \
-
-SOURCES += \
- api.cpp \
- binary/serdes.cpp \
- loader.cpp \
- storage.cpp \
diff --git a/ugc/ugc_tests/ugc_tests.pro b/ugc/ugc_tests/ugc_tests.pro
deleted file mode 100644
index 9fdbd87b4a..0000000000
--- a/ugc/ugc_tests/ugc_tests.pro
+++ /dev/null
@@ -1,30 +0,0 @@
-# UGC library tests.
-
-TARGET = ugc_tests
-CONFIG += console warn_on
-CONFIG -= app_bundle
-TEMPLATE = app
-
-ROOT_DIR = ../..
-DEPENDENCIES = generator_tests_support generator search routing routing_common ugc indexer storage editor platform \
- coding geometry base icu jansson stats_client pugixml tess2 protobuf succinct opening_hours oauthcpp
-
-macx-* {
- LIBS *= "-framework IOKit" "-framework SystemConfiguration"
-}
-
-include($$ROOT_DIR/common.pri)
-
-INCLUDEPATH += $$ROOT_DIR/3party/jansson/src
-
-QT *= core
-
-SOURCES += \
- ../../testing/testingmain.cpp \
- serdes_binary_tests.cpp \
- serdes_tests.cpp \
- storage_tests.cpp \
- utils.cpp \
-
-HEADERS += \
- utils.hpp \