mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 19:26:59 +03:00
Clean up project file
This commit is contained in:
parent
b09b1bb285
commit
eabda8ee75
2 changed files with 21 additions and 25 deletions
43
src/src.pro
43
src/src.pro
|
@ -2,15 +2,28 @@
|
|||
TEMPLATE = app
|
||||
CONFIG += qt thread
|
||||
|
||||
# Windows specific configuration
|
||||
win32 {
|
||||
include(../winconf.pri)
|
||||
}
|
||||
|
||||
# Mac specific configuration
|
||||
macx {
|
||||
include(../macxconf.pri)
|
||||
}
|
||||
|
||||
# Unix specific configuration
|
||||
unix:!macx {
|
||||
exists(../conf.pri) {
|
||||
# generated by configure
|
||||
include(../conf.pri)
|
||||
}
|
||||
include(../unixconf.pri)
|
||||
}
|
||||
|
||||
# eCS(OS/2) specific configuration
|
||||
os2 {
|
||||
include(../os2conf.pri)
|
||||
}
|
||||
|
||||
nox {
|
||||
QT = core
|
||||
QT -= gui
|
||||
TARGET = qbittorrent-nox
|
||||
DEFINES += DISABLE_GUI
|
||||
} else {
|
||||
|
@ -35,26 +48,6 @@ CONFIG(release, debug|release):message(Project is built in RELEASE mode.)
|
|||
# VERSION DEFINES
|
||||
include(../version.pri)
|
||||
|
||||
# Windows specific configuration
|
||||
win32 {
|
||||
include(../winconf.pri)
|
||||
}
|
||||
|
||||
# Mac specific configuration
|
||||
macx {
|
||||
include(../macxconf.pri)
|
||||
}
|
||||
|
||||
# Unix specific configuration
|
||||
unix:!macx {
|
||||
include(../unixconf.pri)
|
||||
}
|
||||
|
||||
# eCS(OS/2) specific configuration
|
||||
os2 {
|
||||
include(../os2conf.pri)
|
||||
}
|
||||
|
||||
DEFINES += QT_NO_CAST_TO_ASCII
|
||||
# Fast concatenation (Qt >= 4.6)
|
||||
DEFINES += QT_USE_FAST_CONCATENATION QT_USE_FAST_OPERATOR_PLUS
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Generated by the configure file
|
||||
include(../conf.pri)
|
||||
|
||||
# COMPILATION SPECIFIC
|
||||
QT += dbus
|
||||
QMAKE_LFLAGS_APP += -rdynamic
|
||||
|
|
Loading…
Reference in a new issue