Enamble linux build.

This commit is contained in:
Sergey Magidovich 2015-11-06 13:52:59 +03:00
parent 971a6385a1
commit 4c17e16d3b
9 changed files with 24 additions and 33 deletions

View file

@ -2,19 +2,23 @@
TEMPLATE = subdirs
# TODO: Avoid duplication here and in omim.pro by moving
# opening_hours tests out of 3party.
!iphone*:!tizen*:!android* {
CONFIG *= desktop
}
SUBDIRS = freetype fribidi minizip jansson tomcrypt protobuf osrm expat \
succinct \
!linux* {
SUBDIRS += opening_hours
CONFIG(desktop):!CONFIG(no-tests) {
SUBDIRS += opening_hours/opening_hours_tests \
opening_hours/opening_hours_integration_tests \
opening_hours/opening_hours_supported_features_tests
}
SUBDIRS += opening_hours
CONFIG(desktop):!CONFIG(no-tests) {
SUBDIRS += opening_hours/opening_hours_tests \
opening_hours/opening_hours_integration_tests \
opening_hours/opening_hours_supported_features_tests
}
!iphone*:!tizen*:!android* {
CONFIG(desktop) {
SUBDIRS += gflags \
libtess2 \
gmock

View file

@ -27,15 +27,14 @@
#include <iomanip>
#include <ios>
#include <cstdlib>
#include <codecvt>
#include <vector>
#include <ostream>
namespace
{
template <typename T, typename SeparatorExtrauctor>
template <typename T, typename SeparatorExtractor>
void PrintVector(std::ostream & ost, std::vector<T> const & v,
SeparatorExtrauctor && sepFunc)
SeparatorExtractor && sepFunc)
{
auto it = begin(v);
if (it == end(v))

View file

@ -95,12 +95,12 @@ private:
TStateRep m_state{State::IsNotTime};
};
inline constexpr Time::THours operator ""_h(uint64_t h)
inline constexpr Time::THours operator ""_h(unsigned long long int h)
{
return Time::THours(h);
}
inline constexpr Time::TMinutes operator ""_min(uint64_t m)
inline constexpr Time::TMinutes operator ""_min(unsigned long long int m)
{
return Time::TMinutes(m);
}
@ -198,7 +198,7 @@ inline constexpr Weekday ToWeekday(uint64_t const day)
: static_cast<Weekday>(day));
}
inline constexpr Weekday operator ""_day(uint64_t day)
inline constexpr Weekday operator ""_day(unsigned long long int day)
{
return ToWeekday(day);
}
@ -385,7 +385,7 @@ inline constexpr MonthDay::Month ToMonth(uint64_t const month)
: static_cast<osmoh::MonthDay::Month>(month));
}
inline constexpr MonthDay::Month operator ""_M(uint64_t month)
inline constexpr MonthDay::Month operator ""_M(unsigned long long int month)
{
return ToMonth(month);
}

View file

@ -21,7 +21,7 @@ LongTimeRange RangeToLong(std::string const & start, std::string const & end)
auto const r1 = mktime(&when);
strptime(end.data(), fmt, &when);
return { r1, mktime(&when) };
return std::make_tuple(r1, mktime(&when));
}

View file

@ -5,9 +5,7 @@ TEMPLATE = app
ROOT_DIR = ../..
DEPENDENCIES = indexer platform geometry coding base protobuf tomcrypt
!linux {
DEPENDENCIES += opening_hours
}
include($$ROOT_DIR/common.pri)

View file

@ -9,9 +9,7 @@ ROOT_DIR = ../..
DEPENDENCIES = map render gui routing search storage graphics indexer platform anim geometry coding base \
freetype fribidi expat protobuf tomcrypt jansson osrm stats_client minizip succinct
!linux* {
DEPENDENCIES *= opening_hours
}
DEPENDENCIES *= opening_hours
drape {
DEPENDENCIES *= drape_frontend drape

View file

@ -4,10 +4,7 @@ DEPENDENCIES = map render gui routing search storage indexer graphics platform a
freetype expat fribidi tomcrypt jansson protobuf osrm stats_client minizip succinct
!linux* {
DEPENDENCIES += opening_hours \
}
DEPENDENCIES += opening_hours \
drape {
DEPENDENCIES *= drape_frontend drape

View file

@ -1,4 +1,4 @@
# This subproject implements integration tests.
# This subproject implements integration tests.
# This tests are launched on the whole world dataset.
# It is recommended to place tests here in the following cases:
@ -13,10 +13,7 @@ TEMPLATE = app
ROOT_DIR = ../..
DEPENDENCIES = map routing search storage indexer platform geometry coding base osrm jansson protobuf tomcrypt succinct stats_client
# this dependency is not built on Linux
!linux* {
DEPENDENCIES += opening_hours
}
DEPENDENCIES += opening_hours
macx-*: LIBS *= "-framework IOKit" "-framework SystemConfiguration"

View file

@ -9,10 +9,8 @@ ROOT_DIR = ../..
DEPENDENCIES = generator routing search storage stats_client jansson indexer platform geometry coding base \
tess2 protobuf tomcrypt
!linux* {
DEPENDENCIES += opening_hours \
DEPENDENCIES += opening_hours \
}
include($$ROOT_DIR/common.pri)