mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 06:13:36 -07:00
- Use PKGConfig again to configure libtorrent
This commit is contained in:
parent
cb08280180
commit
676d6764b9
5 changed files with 8 additions and 7 deletions
|
@ -1,5 +1,6 @@
|
||||||
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.2
|
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.2
|
||||||
- BUGFIX: Window can now stay maximized on exit
|
- BUGFIX: Window can now stay maximized on exit
|
||||||
|
- BUGFIX: Use PKGCONFIG again for configuring libtorrent
|
||||||
|
|
||||||
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
|
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
|
||||||
- BUGFIX: A lot of fixes in configure file
|
- BUGFIX: A lot of fixes in configure file
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -342,7 +342,7 @@ public:
|
||||||
if(!found) return false;
|
if(!found) return false;
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}
|
}
|
||||||
conf->addLib("-ltorrent");
|
//conf->addLib("-ltorrent");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -56,7 +56,7 @@ public:
|
||||||
if(!found) return false;
|
if(!found) return false;
|
||||||
conf->addLib(QString("-L") + s);
|
conf->addLib(QString("-L") + s);
|
||||||
}
|
}
|
||||||
conf->addLib("-ltorrent");
|
//conf->addLib("-ltorrent");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Categories=Qt;Application;Network;P2P
|
Categories=Qt;Application;Network;P2P
|
||||||
Comment=V0.9.1
|
Comment=V0.9.2
|
||||||
Encoding=UTF-8
|
Encoding=UTF-8
|
||||||
Exec=qbittorrent
|
Exec=qbittorrent
|
||||||
GenericName=Bittorrent client
|
GenericName=Bittorrent client
|
||||||
|
|
|
@ -11,10 +11,10 @@ TARGET = qbittorrent
|
||||||
CONFIG += qt thread x11
|
CONFIG += qt thread x11
|
||||||
|
|
||||||
# Update this VERSION for each release
|
# Update this VERSION for each release
|
||||||
DEFINES += VERSION=\\\"v0.9.1\\\"
|
DEFINES += VERSION=\\\"v0.9.2rc1\\\"
|
||||||
DEFINES += VERSION_MAJOR=0
|
DEFINES += VERSION_MAJOR=0
|
||||||
DEFINES += VERSION_MINOR=9
|
DEFINES += VERSION_MINOR=9
|
||||||
DEFINES += VERSION_BUGFIX=1
|
DEFINES += VERSION_BUGFIX=2
|
||||||
|
|
||||||
contains(DEBUG_MODE, 1){
|
contains(DEBUG_MODE, 1){
|
||||||
CONFIG += debug
|
CONFIG += debug
|
||||||
|
@ -28,8 +28,8 @@ contains(DEBUG_MODE, 0){
|
||||||
QMAKE_CXXFLAGS_RELEASE += -fwrapv
|
QMAKE_CXXFLAGS_RELEASE += -fwrapv
|
||||||
QMAKE_CXXFLAGS_DEBUG += -fwrapv
|
QMAKE_CXXFLAGS_DEBUG += -fwrapv
|
||||||
#LIBS += -lcurl
|
#LIBS += -lcurl
|
||||||
#CONFIG += link_pkgconfig
|
CONFIG += link_pkgconfig
|
||||||
#PKGCONFIG += libtorrent
|
PKGCONFIG += libtorrent
|
||||||
QT += network
|
QT += network
|
||||||
|
|
||||||
DEFINES += QT_NO_CAST_TO_ASCII
|
DEFINES += QT_NO_CAST_TO_ASCII
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue