From cf1a4f085abcc9c495ffb7b2a5ccfcb45f467db5 Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Mon, 24 Aug 2015 19:53:24 +0300 Subject: [PATCH] Fix linux build --- qt/qt.pro | 8 +++++++- search/integration_tests/integration_tests.pro | 7 ++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/qt/qt.pro b/qt/qt.pro index c100464782..93a0ee7e99 100644 --- a/qt/qt.pro +++ b/qt/qt.pro @@ -1,7 +1,13 @@ # Main application in qt. ROOT_DIR = .. DEPENDENCIES = map render gui routing search storage indexer graphics platform anim geometry coding base \ - freetype expat fribidi tomcrypt jansson protobuf osrm stats_client minizip succinct opening_hours + freetype expat fribidi tomcrypt jansson protobuf osrm stats_client minizip succinct + + +!linux* { + DEPENDENCIES += opening_hours \ + +} drape { DEPENDENCIES *= drape_frontend drape diff --git a/search/integration_tests/integration_tests.pro b/search/integration_tests/integration_tests.pro index 59b636a317..18ada8fa2f 100644 --- a/search/integration_tests/integration_tests.pro +++ b/search/integration_tests/integration_tests.pro @@ -7,7 +7,12 @@ TEMPLATE = app ROOT_DIR = ../.. DEPENDENCIES = generator routing search storage stats_client jansson indexer platform geometry coding base \ - sgitess protobuf tomcrypt opening_hours + sgitess protobuf tomcrypt + +!linux* { + DEPENDENCIES += opening_hours \ + +} include($$ROOT_DIR/common.pri)