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 \