forked from chozabu/FriendMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFriendMap.pro
65 lines (55 loc) · 1.22 KB
/
FriendMap.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
!include("../Common/retroshare_plugin.pri"): error("Could not include file ../Common/retroshare_plugin.pri")
TARGET = FriendMap
CONFIG += qt uic qrc resources c++11
HEADERS -= upnp/upnputil.h
SOURCES -= upnp/upnputil.c
greaterThan(QT_MAJOR_VERSION, 4) {
# Qt 5
QT += widgets
LIBS += -lmarblewidget-qt5
}else{
LIBS += -lmarblewidget
}
win32 {
DEFINES += _USE_MATH_DEFINES
}
RESOURCES += \
fmimages.qrc
HEADERS += \
FriendMapPlugin.h \
FriendMapPage.h \
PaintLayer.h \
FriendMapSettings.h \
FriendMapConfigPage.h \
FriendMapDetached.h \
FriendMapController.h \
GeoPeer.h \
PositionManager.h \
MarbleWidget.h \
interface.h \
DataModel.h \
TurtleTunnelInfo.h \
GeoTunnel.h \
paintable.h \
GeoLink.h
SOURCES += \
FriendMapPlugin.cpp \
FriendMapPage.cpp \
PaintLayer.cpp \
FriendMapSettings.cpp \
FriendMapConfigPage.cpp \
FriendMapDetached.cpp \
FriendMapController.cpp \
GeoPeer.cpp \
PositionManager.cpp \
interface.cpp \
DataModel.cpp \
GeoTunnel.cpp \
TurtleTunnelInfo.cpp \
paintable.cpp \
GeoLink.cpp
LIBS += -lGeoIP
FORMS += \
FriendMapPage.ui \
FriendMapConfigPage.ui \
FriendMapDetached.ui