mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 21:38:51 +03:00
- Added some windows rules to src.pro
This commit is contained in:
parent
15d0315c9f
commit
398e121d2c
2 changed files with 14 additions and 7 deletions
|
@ -11,7 +11,7 @@
|
||||||
- FEATURE: Implemented close to systray
|
- FEATURE: Implemented close to systray
|
||||||
- FEATURE: Added Autocompletion to search engine
|
- FEATURE: Added Autocompletion to search engine
|
||||||
- FEATURE: Splitted BT & GUI parts (huge code rewriting & optimization)
|
- FEATURE: Splitted BT & GUI parts (huge code rewriting & optimization)
|
||||||
- FEATURE: new parameters for configure file to point to custom locations for libtorrent/libcurl
|
- FEATURE: New parameters for configure file to point to custom locations for libtorrent/libcurl
|
||||||
- BUGFIX: Two torrents can now have the same name although they are different (use their hash)
|
- BUGFIX: Two torrents can now have the same name although they are different (use their hash)
|
||||||
- BUGFIX: Fixed download from url that would fail sometimes
|
- BUGFIX: Fixed download from url that would fail sometimes
|
||||||
- BUGFIX: Save directory was reset to default when filtering files in torrent
|
- BUGFIX: Save directory was reset to default when filtering files in torrent
|
||||||
|
|
19
src/src.pro
19
src/src.pro
|
@ -48,7 +48,16 @@ contains(DEBUG_MODE, 0){
|
||||||
}
|
}
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
unix {
|
|
||||||
|
!win32 {
|
||||||
|
# Binary
|
||||||
|
exists(../conf.pri) {
|
||||||
|
include(../conf.pri)
|
||||||
|
# Target
|
||||||
|
target.path = $$BINDIR
|
||||||
|
INSTALLS += target
|
||||||
|
}
|
||||||
|
|
||||||
# Man page
|
# Man page
|
||||||
man.files = ../doc/qbittorrent.1.gz
|
man.files = ../doc/qbittorrent.1.gz
|
||||||
man.path = $$PREFIX/share/man/man1/
|
man.path = $$PREFIX/share/man/man1/
|
||||||
|
@ -63,11 +72,9 @@ unix {
|
||||||
INSTALLS += logos
|
INSTALLS += logos
|
||||||
}
|
}
|
||||||
|
|
||||||
exists(../conf.pri) {
|
# Windows
|
||||||
include(../conf.pri)
|
win32 {
|
||||||
# Target
|
LIBS += -lcurl -ltorrent
|
||||||
target.path = $$BINDIR
|
|
||||||
INSTALLS += target
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RESOURCES = icons.qrc \
|
RESOURCES = icons.qrc \
|
||||||
|
|
Loading…
Reference in a new issue