Welcome to mirror list, hosted at ThFree Co, Russian Federation.

feature_segments_checker.pro « feature_segments_checker « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be269b569bcd61372f3582825f7ab76bc939bce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Feature segments checker tool.
# Checks for different properties of feature in mwm.

TARGET = feature_segments_checker
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app

ROOT_DIR = ../..
DEPENDENCIES = generator map routing storage indexer platform geometry coding base minizip succinct protobuf gflags

include($$ROOT_DIR/common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/gflags/src

QT *= core

macx-* {
    LIBS *= "-framework IOKit" "-framework SystemConfiguration"
}

SOURCES += \
    feature_segments_checker.cpp \