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:
authorYuri Gorshenin <y@maps.me>2017-06-20 20:44:49 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-07-05 16:41:38 +0300
commit94dff2d90e4ff9d5110cc6e87d87111d5d035c04 (patch)
tree7447fa17267d70b1cf04b29d08e984b035842ea6
parent100cc82f2fcb7380fe61af66d14807571187830d (diff)
[ugc] Added ugc_tests.pro
-rw-r--r--omim.pro4
-rw-r--r--ugc/ugc_tests/ugc_tests.pro17
2 files changed, 21 insertions, 0 deletions
diff --git a/omim.pro b/omim.pro
index a0f6a3d428..e55da716af 100644
--- a/omim.pro
+++ b/omim.pro
@@ -276,5 +276,9 @@ SUBDIRS = 3party base coding geometry editor ugc indexer routing routing_common
openlr_tests.subdir = openlr/openlr_tests
openlr_tests.depends = $$SUBDIRS platform_tests_support
SUBDIRS *= openlr_tests
+
+ ugc_tests.subdir = ugc/ugc_tests
+ ugc_tests.depends = ugc indexer platform coding geometry base
+ SUBDIRS *= ugc_tests
} # !no-tests
} # !gtool
diff --git a/ugc/ugc_tests/ugc_tests.pro b/ugc/ugc_tests/ugc_tests.pro
new file mode 100644
index 0000000000..b7da13f7fc
--- /dev/null
+++ b/ugc/ugc_tests/ugc_tests.pro
@@ -0,0 +1,17 @@
+# UGC library tests.
+
+TARGET = ugc_tests
+CONFIG += console warn_on
+CONFIG -= app_bundle
+TEMPLATE = app
+
+ROOT_DIR = ../..
+DEPENDENCIES = ugc indexer platform coding geometry base
+
+include($$ROOT_DIR/common.pri)
+
+QT *= core
+
+SOURCES += \
+ ../../testing/testingmain.cpp \
+ serdes_tests.cpp \