2006-09-30 20:02:39 +04:00
|
|
|
# Global
|
|
|
|
TEMPLATE = app
|
2015-08-04 19:17:01 +03:00
|
|
|
CONFIG += qt thread silent
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2015-08-26 20:44:42 +03:00
|
|
|
# C++11 support
|
|
|
|
CONFIG += c++11
|
|
|
|
DEFINES += BOOST_NO_CXX11_RVALUE_REFERENCES
|
2016-05-08 19:28:02 +03:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): greaterThan(QT_MINOR_VERSION, 1): DEFINES += QBT_USES_QT5
|
2015-08-26 20:44:42 +03:00
|
|
|
|
2011-01-01 20:16:37 +03:00
|
|
|
# Windows specific configuration
|
2015-01-18 15:13:06 +03:00
|
|
|
win32: include(../winconf.pri)
|
2011-01-01 20:16:37 +03:00
|
|
|
|
|
|
|
# Mac specific configuration
|
2015-01-18 15:13:06 +03:00
|
|
|
macx: include(../macxconf.pri)
|
2011-01-01 20:16:37 +03:00
|
|
|
|
|
|
|
# Unix specific configuration
|
2015-01-18 15:13:06 +03:00
|
|
|
unix:!macx: include(../unixconf.pri)
|
2011-01-01 20:16:37 +03:00
|
|
|
|
|
|
|
# eCS(OS/2) specific configuration
|
2015-01-18 15:13:06 +03:00
|
|
|
os2: include(../os2conf.pri)
|
2010-06-09 19:13:52 +04:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
nogui {
|
|
|
|
QT -= gui
|
2016-01-17 10:11:55 +03:00
|
|
|
DEFINES += DISABLE_GUI
|
2015-01-18 15:13:06 +03:00
|
|
|
TARGET = qbittorrent-nox
|
2010-06-17 15:55:47 +04:00
|
|
|
} else {
|
2015-01-18 15:13:06 +03:00
|
|
|
QT += xml
|
2016-01-07 02:41:40 +03:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += concurrent widgets
|
2015-01-18 15:13:06 +03:00
|
|
|
CONFIG(static) {
|
|
|
|
DEFINES += QBT_STATIC_QT
|
|
|
|
QTPLUGIN += qico
|
|
|
|
}
|
|
|
|
TARGET = qbittorrent
|
2010-01-05 01:29:48 +03:00
|
|
|
}
|
2015-01-18 15:13:06 +03:00
|
|
|
nowebui: DEFINES += DISABLE_WEBUI
|
|
|
|
strace_win: DEFINES += STACKTRACE_WIN
|
2015-08-27 14:25:14 +03:00
|
|
|
QT += network xml
|
2013-09-21 11:59:58 +04:00
|
|
|
|
2010-08-22 22:52:54 +04:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
CONFIG(debug, debug|release): message(Project is built in DEBUG mode.)
|
|
|
|
CONFIG(release, debug|release): message(Project is built in RELEASE mode.)
|
2010-02-11 01:28:01 +03:00
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
# Disable debug output in release mode
|
2011-01-02 01:26:17 +03:00
|
|
|
CONFIG(release, debug|release) {
|
2015-01-18 15:13:06 +03:00
|
|
|
message(Disabling debug output.)
|
|
|
|
DEFINES += QT_NO_DEBUG_OUTPUT
|
2010-08-16 21:35:32 +04:00
|
|
|
}
|
2010-02-28 18:15:00 +03:00
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
# VERSION DEFINES
|
|
|
|
include(../version.pri)
|
2007-08-29 14:20:39 +04:00
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
DEFINES += QT_NO_CAST_TO_ASCII
|
|
|
|
# Fast concatenation (Qt >= 4.6)
|
|
|
|
DEFINES += QT_USE_FAST_CONCATENATION QT_USE_FAST_OPERATOR_PLUS
|
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
win32: DEFINES += NOMINMAX
|
2011-01-18 19:55:49 +03:00
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
include(app/app.pri)
|
2015-09-25 11:10:05 +03:00
|
|
|
include(base/base.pri)
|
2015-01-18 15:13:06 +03:00
|
|
|
!nowebui: include(webui/webui.pri)
|
2015-08-26 20:18:33 +03:00
|
|
|
!nogui: include(gui/gui.pri)
|
2009-12-07 23:54:47 +03:00
|
|
|
|
2010-05-30 21:51:40 +04:00
|
|
|
# Resource files
|
2015-05-08 10:33:40 +03:00
|
|
|
QMAKE_RESOURCE_FLAGS += -compress 9 -threshold 5
|
2015-01-18 15:13:06 +03:00
|
|
|
RESOURCES += \
|
|
|
|
icons.qrc \
|
2015-08-26 20:18:33 +03:00
|
|
|
lang.qrc \
|
|
|
|
searchengine.qrc
|
2011-09-24 16:39:27 +04:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
# Translations
|
2016-05-08 11:39:47 +03:00
|
|
|
TRANSLATIONS += $$files(lang/qbittorrent_*.ts)
|
2010-05-17 18:57:45 +04:00
|
|
|
|
2010-06-08 19:17:15 +04:00
|
|
|
DESTDIR = .
|