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
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2013-09-17 18:22:29 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:02:44 +0300
commit70ffc276a0aaf69000a8658cd137c2622066fb27 (patch)
tree6c5a9f40d83519386222bbbaf036b2fcf5126a32 /drape_head/drape_head.pro
parent879046aadd167c3963ec76f4b1c6e9c533267bbc (diff)
temporary project for develop and debug drape engine
Diffstat (limited to 'drape_head/drape_head.pro')
-rw-r--r--drape_head/drape_head.pro33
1 files changed, 33 insertions, 0 deletions
diff --git a/drape_head/drape_head.pro b/drape_head/drape_head.pro
new file mode 100644
index 0000000000..2db081c1f1
--- /dev/null
+++ b/drape_head/drape_head.pro
@@ -0,0 +1,33 @@
+# Head project for drape develop and debuging
+ROOT_DIR = ..
+DEPENDENCIES = drape base
+
+include($$ROOT_DIR/common.pri)
+
+TARGET = DrapeHead
+TEMPLATE = app
+CONFIG += warn_on
+QT *= core widgets gui opengl
+
+win32* {
+ LIBS += -lopengl32 -lws2_32 -lshell32 -liphlpapi
+ RC_FILE = res/windows.rc
+ win32-msvc*: LIBS += -lwlanapi
+ win32-g++: LIBS += -lpthread
+}
+
+win32*|linux* {
+ QT *= network
+}
+
+HEADERS += \
+ mainwindow.hpp \
+ glwidget.hpp
+
+SOURCES += \
+ mainwindow.cpp \
+ main.cpp \
+ glwidget.cpp
+
+FORMS += \
+ mainwindow.ui