mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-22 08:27:24 -06:00
- Moved everything to trunk to create a stable branch
This commit is contained in:
102
src/src.pro
Normal file
102
src/src.pro
Normal file
@@ -0,0 +1,102 @@
|
||||
# Vars
|
||||
LANG_PATH = lang
|
||||
ICONS_PATH = Icons
|
||||
TRAYICON_CPP = trayicon
|
||||
|
||||
#Set the following variable to 1 to enable debug
|
||||
DEBUG_MODE = 1
|
||||
|
||||
# Global
|
||||
TEMPLATE = app
|
||||
TARGET = qbittorrent
|
||||
DEPENDPATH += . trayicon
|
||||
INCLUDEPATH += $$TRAYICON_CPP
|
||||
CONFIG += qt x11
|
||||
|
||||
contains(DEBUG_MODE, 1){
|
||||
CONFIG += debug
|
||||
message(Debug build!)
|
||||
}
|
||||
contains(DEBUG_MODE, 0){
|
||||
CONFIG -= debug
|
||||
message(Release build!)
|
||||
}
|
||||
|
||||
LIBS += -lcurl
|
||||
CONFIG += link_pkgconfig
|
||||
PKGCONFIG += libtorrent
|
||||
QT += xml network
|
||||
|
||||
contains(DEBUG_MODE, 0){
|
||||
DEFINES += QT_NO_DEBUG_OUTPUT
|
||||
CONFIG += release
|
||||
}
|
||||
|
||||
# Includes
|
||||
include($$TRAYICON_CPP/trayicon.pri)
|
||||
exists(../conf.pri) {
|
||||
include(../conf.pri)
|
||||
}
|
||||
|
||||
# Install
|
||||
unix {
|
||||
# Man page
|
||||
man.files = doc/qbittorrent.1.gz
|
||||
man.path = $$PREFIX/share/man/man1/
|
||||
INSTALLS += man
|
||||
|
||||
# Menu Icon
|
||||
menuicon.files = Icons/qBittorrent.desktop
|
||||
menuicon.path = $$PREFIX/share/applications/
|
||||
INSTALLS += menuicon
|
||||
logos.files = menuicons/*
|
||||
logos.path = $$PREFIX/share/icons/hicolor/
|
||||
INSTALLS += logos
|
||||
}
|
||||
|
||||
target.path = $$PREFIX/bin/
|
||||
INSTALLS += target
|
||||
|
||||
RESOURCES = icons.qrc \
|
||||
lang.qrc \
|
||||
search.qrc
|
||||
|
||||
# Translations
|
||||
TRANSLATIONS = $$LANG_PATH/qbittorrent_fr.ts \
|
||||
$$LANG_PATH/qbittorrent_zh.ts \
|
||||
$$LANG_PATH/qbittorrent_en.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_zh_HK.ts \
|
||||
$$LANG_PATH/qbittorrent_sk.ts \
|
||||
$$LANG_PATH/qbittorrent_ro.ts \
|
||||
$$LANG_PATH/qbittorrent_pt.ts
|
||||
|
||||
# Source code
|
||||
HEADERS += GUI.h misc.h options_imp.h about_imp.h \
|
||||
properties_imp.h createtorrent_imp.h OSD.h \
|
||||
DLListDelegate.h SearchListDelegate.h \
|
||||
PropListDelegate.h previewSelect.h \
|
||||
PreviewListDelegate.h trackerLogin.h \
|
||||
downloadThread.h downloadFromURLImp.h
|
||||
FORMS += MainWindow.ui options.ui about.ui \
|
||||
properties.ui createtorrent.ui preview.ui \
|
||||
login.ui downloadFromURL.ui
|
||||
SOURCES += GUI.cpp \
|
||||
main.cpp \
|
||||
options_imp.cpp \
|
||||
properties_imp.cpp \
|
||||
createtorrent_imp.cpp \
|
||||
OSD.cpp
|
||||
|
||||
Reference in New Issue
Block a user