-
Notifications
You must be signed in to change notification settings - Fork 2
/
ztopo.pro
51 lines (46 loc) · 1.46 KB
/
ztopo.pro
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
40
41
42
43
44
45
46
47
48
49
50
51
BOOST_ROOT = "/opt/local"
PROJ4_ROOT = "/Users/hawkinsp/Documents/Wine/drive_c/p/proj-4.7.0"
PROJ4_LIBS = "$$PROJ4_ROOT/src/.libs"
PROJ4_INCLUDE = "$$PROJ4_ROOT/src"
BDB_ROOT = "/Users/hawkinsp/Documents/Wine/drive_c/p"
BDB_LIB = db-5.0
QJSON_ROOT = "/Users/hawkinsp/Documents/Wine/drive_c/Program Files/qjson"
TEMPLATE = app
TARGET =
DEPENDPATH += . src
INCLUDEPATH += . src "$$PROJ4_INCLUDE" "$$BOOST_ROOT/include"
INCLUDEPATH += "$$QJSON_ROOT/include" "$$BDB_ROOT/include"
LIBS += -L "$$BDB_ROOT/lib" -l$$BDB_LIB
LIBS += -L"$$QJSON_ROOT/lib" -lqjson
LIBS += -L"$$PROJ4_LIBS" -lproj
# Input
HEADERS += src/consts.h \
src/coordformatter.h \
src/mainwindow.h \
src/map.h \
src/maprenderer.h \
src/mapwidget.h \
src/preferences.h \
src/printscene.h \
src/printview.h \
src/projection.h \
src/rootdata.h \
src/searchhandler.h \
src/tilecache.h
FORMS += src/preferences.ui
SOURCES += src/coordformatter.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/map.cpp \
src/maprenderer.cpp \
src/mapwidget.cpp \
src/preferences.cpp \
src/printscene.cpp \
src/printview.cpp \
src/projection.cpp \
src/rootdata.cpp \
src/searchhandler.cpp \
src/tilecache.cpp \
RESOURCES += src/resources.qrc
QT += network opengl xml
RC_FILE = images/topo.rc