2006-09-30 20:02:39 +04:00
|
|
|
# Global
|
|
|
|
TEMPLATE = app
|
2010-11-20 20:21:40 +03:00
|
|
|
CONFIG += qt thread
|
2006-09-30 20:02:39 +04: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
|
|
|
|
DEFINES += DISABLE_GUI
|
|
|
|
TARGET = qbittorrent-nox
|
2010-06-17 15:55:47 +04:00
|
|
|
} else {
|
2015-01-18 15:13:06 +03:00
|
|
|
QT += xml
|
|
|
|
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
|
2010-11-20 20:21:40 +03:00
|
|
|
QT += network
|
2013-09-21 11:59:58 +04:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
2010-11-20 20:21:40 +03:00
|
|
|
# Vars
|
|
|
|
LANG_PATH = lang
|
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
|
|
|
|
|
2011-02-26 18:04:15 +03:00
|
|
|
# Fixes compilation with Boost >= v1.46 where boost
|
|
|
|
# filesystem v3 is the default.
|
|
|
|
DEFINES += BOOST_FILESYSTEM_VERSION=2
|
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
win32: DEFINES += NOMINMAX
|
2011-01-18 19:55:49 +03:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
include(app/app.pri)
|
|
|
|
include(core/core.pri)
|
|
|
|
!nowebui: include(webui/webui.pri)
|
|
|
|
!nogui: include(gui/gui.pri)
|
2009-12-07 23:54:47 +03:00
|
|
|
|
2010-05-30 21:51:40 +04:00
|
|
|
# Resource files
|
2015-01-18 15:13:06 +03:00
|
|
|
RESOURCES += \
|
|
|
|
icons.qrc \
|
|
|
|
lang.qrc
|
2011-09-24 16:39:27 +04:00
|
|
|
|
2015-01-18 15:13:06 +03:00
|
|
|
# Translations
|
|
|
|
TRANSLATIONS = \
|
|
|
|
$$LANG_PATH/qbittorrent_fr.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_zh.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_zh_TW.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_en.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_en_AU.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_en_GB.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ca.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_es.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_pl.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ko.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_de.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_nl.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_tr.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_sv.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_el.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ru.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_uk.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_bg.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_it.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_sk.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ro.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_pt.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_nb.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_fi.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_da.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ja.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_hu.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_pt_BR.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_cs.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_sr.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ar.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_hr.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_gl.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_hy.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_lt.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_ka.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_be.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_eu.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_he.ts \
|
|
|
|
$$LANG_PATH/qbittorrent_vi.ts
|
2010-05-17 18:57:45 +04:00
|
|
|
|
2010-06-08 19:17:15 +04:00
|
|
|
DESTDIR = .
|