-
Notifications
You must be signed in to change notification settings - Fork 6
/
FriendMap.pro
50 lines (40 loc) · 1.16 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
!include("../Common/retroshare_plugin.pri"): error("Could not include file ../Common/retroshare_plugin.pri")
TARGET = FriendMap
CONFIG += qt uic qrc resources
HEADERS -= upnp/upnputil.h
SOURCES -= upnp/upnputil.c
win32{
#Fixing libGeoIp compile errors
DEFINES += WINVER=0x0501 _WIN32_WINNT=0x0501 PACKAGE_VERSION=\\\"1.6\\\"
INCLUDEPATH += ../../../geoip-api-c/libGeoIP ../../../marble/include
SOURCES += ../../../geoip-api-c/libGeoIP/GeoIp.c ../../../geoip-api-c/libGeoIP/GeoIpCity.c ../../../geoip-api-c/libGeoIP/GeoIP_deprecated.c
LIBS += -lQtSVG4 -lQtWebKit4 -lws2_32
}
RESOURCES += \
fmimages.qrc
HEADERS += \
FriendMapPlugin.h \
FriendMapPage.h \
MarbleWidget.h \
PaintLayer.h \
FriendMapSettings.h \
FriendMapConfigPage.h \
FriendMapDetached.h \
FriendMapController.h
SOURCES += \
FriendMapPlugin.cpp \
FriendMapPage.cpp \
PaintLayer.cpp \
FriendMapSettings.cpp \
FriendMapConfigPage.cpp \
FriendMapDetached.cpp \
FriendMapController.cpp
win32{
LIBS += -lmarblewidget
} else {
LIBS += -lmarblewidget -lGeoIP
}
FORMS += \
FriendMapPage.ui \
FriendMapConfigPage.ui \
FriendMapDetached.ui