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/drape
diff options
context:
space:
mode:
authorSergey Yershov <syershov@maps.me>2016-11-16 17:23:55 +0300
committerSergey Yershov <syershov@maps.me>2016-11-17 13:27:23 +0300
commitd9e4a1b1a28fc888ca0b1a333c6a1b49a52fb6ce (patch)
tree31a563d73b7562082b4f26e2b2ed05e70ccc0a18 /drape
parent19600faf61beb3a36b02ccb458eaffa0a39edb17 (diff)
Remove dependencies on tomcrypt
Diffstat (limited to 'drape')
-rw-r--r--drape/drape_tests/drape_tests.pro8
1 files changed, 7 insertions, 1 deletions
diff --git a/drape/drape_tests/drape_tests.pro b/drape/drape_tests/drape_tests.pro
index 144bcc194a..02c40338eb 100644
--- a/drape/drape_tests/drape_tests.pro
+++ b/drape/drape_tests/drape_tests.pro
@@ -17,7 +17,13 @@ include($$DRAPE_DIR/drape_common.pri)
INCLUDEPATH *= $$ROOT_DIR/3party/gmock/include $$ROOT_DIR/3party/gmock/gtest/include
-macx-* : LIBS *= "-framework CoreLocation"
+macx-* {
+ QT *= gui widgets # needed for QApplication with event loop, to test async events (downloader, etc.)
+ LIBS *= "-framework IOKit" "-framework QuartzCore" "-framework Cocoa" "-framework SystemConfiguration" "-framework CoreLocation"
+}
+win32*|linux* {
+ QT *= network
+}
SOURCES += \
attribute_provides_tests.cpp \