2010-11-20 17:21:40 +00:00
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
|
|
|
HEADERS += $$PWD/geoipmanager.h
|
|
|
|
|
|
|
|
SOURCES += $$PWD/geoipmanager.cpp
|
|
|
|
|
|
|
|
# Add GeoIP resource file if the GeoIP database
|
|
|
|
# should be embedded in qBittorrent executable
|
|
|
|
contains(DEFINES, WITH_GEOIP_EMBEDDED) {
|
2010-11-21 09:49:56 +00:00
|
|
|
exists("GeoIP.dat") {
|
2010-11-20 17:21:40 +00:00
|
|
|
message("GeoIP.dat was found in src/geoip/.")
|
|
|
|
RESOURCES += $$PWD/geoip.qrc
|
|
|
|
} else {
|
|
|
|
DEFINES -= WITH_GEOIP_EMBEDDED
|
|
|
|
error("GeoIP.dat was not found in src/geoip/ folder, please follow instructions in src/geoip/README.")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
message("GeoIP database will not be embedded in qBittorrent executable.")
|
|
|
|
}
|