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

drape_head.pro « drape_head - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 925b12b1ef0b8201cf8596cf391881ddf6d2d2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Head project for drape develop and debuging
ROOT_DIR = ..
DEPENDENCIES = map drape_frontend drape indexer storage platform geometry coding base \
               freetype expat protobuf jansson fribidi tomcrypt

include($$ROOT_DIR/common.pri)

INCLUDEPATH += $$ROOT_DIR/3party/jansson/src

TARGET = DrapeHead
TEMPLATE = app
CONFIG += warn_on
QT *= core gui widgets opengl

win32* {
  LIBS += -lopengl32 -lws2_32 -liphlpapi
#  RC_FILE = res/windows.rc
  win32-msvc*: LIBS += -lwlanapi
}

win32*|linux* {
  QT *= network
}

macx-* {
  LIBS *= "-framework CoreLocation" "-framework CoreWLAN" \
          "-framework QuartzCore" "-framework IOKit"
}

HEADERS += \
    mainwindow.hpp \
    drape_surface.hpp \
    testing_engine.hpp \

SOURCES += \
    mainwindow.cpp \
    main.cpp \
    drape_surface.cpp \
    testing_engine.cpp \