2013-11-20 02:28:18 +04:00
|
|
|
# The first path is used when the source is being build by packagers (pbuilder/sbuild/etc)
|
|
|
|
# The second path is used when you manually run the configure script in the root folder (eg when using qt creator)
|
|
|
|
exists($$OUT_PWD/../conf.pri) {
|
|
|
|
include($$OUT_PWD/../conf.pri)
|
2018-12-21 13:31:49 +03:00
|
|
|
}
|
|
|
|
else {
|
2013-11-20 02:28:18 +04:00
|
|
|
include(conf.pri)
|
|
|
|
}
|
2011-01-01 20:16:37 +03:00
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
# COMPILATION SPECIFIC
|
2015-09-20 15:45:40 +03:00
|
|
|
!nogui:dbus: QT += dbus
|
2011-03-26 12:03:12 +03:00
|
|
|
|
2018-05-10 01:38:50 +03:00
|
|
|
QMAKE_CXXFLAGS += -Wall -Wextra -Wpedantic -Wformat-security
|
2015-09-20 15:45:40 +03:00
|
|
|
!haiku: QMAKE_LFLAGS_APP += -rdynamic
|
2010-11-20 20:21:40 +03:00
|
|
|
|
|
|
|
# Man page
|
2015-01-18 15:13:06 +03:00
|
|
|
nogui {
|
2010-11-20 20:21:40 +03:00
|
|
|
man.files = ../doc/qbittorrent-nox.1
|
2018-12-21 13:31:49 +03:00
|
|
|
}
|
|
|
|
else {
|
2010-11-20 20:21:40 +03:00
|
|
|
man.files = ../doc/qbittorrent.1
|
|
|
|
}
|
2011-01-15 12:30:41 +03:00
|
|
|
|
2014-04-19 23:47:08 +04:00
|
|
|
man.path = $$MANPREFIX/man1
|
2010-11-20 20:21:40 +03:00
|
|
|
INSTALLS += man
|
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
DIST_PATH = ../dist/unix
|
|
|
|
|
2015-04-05 15:12:36 +03:00
|
|
|
# Systemd Service file
|
|
|
|
nogui:systemd {
|
2017-05-18 16:51:50 +03:00
|
|
|
systemdService.files = $$DIST_PATH/systemd/qbittorrent-nox@.service
|
2021-04-10 11:24:10 +03:00
|
|
|
systemdService.path = $$PREFIX/lib/systemd/system
|
2015-04-05 15:12:36 +03:00
|
|
|
INSTALLS += systemdService
|
|
|
|
}
|
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
# Menu Icon
|
2015-01-18 15:13:06 +03:00
|
|
|
!nogui {
|
2021-04-10 11:24:10 +03:00
|
|
|
desktopEntry.files = $$DIST_PATH/org.qbittorrent.qBittorrent.desktop
|
|
|
|
desktopEntry.path = $$DATADIR/applications
|
|
|
|
INSTALLS += desktopEntry
|
2010-11-20 20:21:40 +03:00
|
|
|
|
2019-01-05 05:01:32 +03:00
|
|
|
appdata.files = $$DIST_PATH/org.qbittorrent.qBittorrent.appdata.xml
|
2021-04-10 11:24:10 +03:00
|
|
|
appdata.path = $$DATADIR/metainfo
|
2015-04-05 19:01:23 +03:00
|
|
|
INSTALLS += appdata
|
|
|
|
|
2021-04-10 11:24:10 +03:00
|
|
|
menuicons.files = $$DIST_PATH/menuicons/*
|
|
|
|
menuicons.path = $$DATADIR/icons/hicolor
|
2020-05-18 18:00:51 +03:00
|
|
|
statusIconScalable.files = $$PWD/src/icons/qbittorrent-tray.svg \
|
|
|
|
$$PWD/src/icons/qbittorrent-tray-dark.svg \
|
|
|
|
$$PWD/src/icons/qbittorrent-tray-light.svg
|
2021-04-10 11:24:10 +03:00
|
|
|
statusIconScalable.path = $$DATADIR/icons/hicolor/scalable/status
|
2015-01-18 15:13:06 +03:00
|
|
|
INSTALLS += \
|
2021-04-10 11:24:10 +03:00
|
|
|
menuicons \
|
2017-07-05 14:16:57 +03:00
|
|
|
statusIconScalable
|
2011-03-19 01:49:28 +03:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
pixmap.files = $$DIST_PATH/menuicons/128x128/apps/qbittorrent.png
|
2021-04-10 11:24:10 +03:00
|
|
|
pixmap.path = $$DATADIR/pixmaps
|
2015-01-18 15:13:06 +03:00
|
|
|
INSTALLS += pixmap
|
2010-11-20 20:21:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# INSTALL
|
2021-04-10 11:24:10 +03:00
|
|
|
target.path = $$PREFIX/bin
|
2010-11-20 20:21:40 +03:00
|
|
|
INSTALLS += target
|