Would be good to close this topic and open a new one with qBittorrent v3.3.3 (sledge

Provided you have a 'github' account you can edit or update pages on the 'wiki' for yourself, should you find errors or inaccuracies..If someone can update the page will be great:
Code: Select all
b2 -q --without-python --toolset=msvc-14.0 variant=release link=static runtime-link=static debug-symbols=on encryption=on crypto=openssl logging=off resolve-countries=off dht=on windows-version=xp character-set=unicode boost-link=static -sBOOST_ROOT="G:\qBittorrent\boost_1_60_0" include="G:\QBITTORRENT\install_msvc\base\include" library-path="G:\QBITTORRENT\install_msvc\base\lib" --prefix="G:\QBITTORRENT\install_msvc\base" define=_USING_V110_SDK71_ define=BOOST_ASIO_DISABLE_CONNECTEX define=BOOST_USE_WINAPI_VERSION=0x0501 cxxflags=/arch:IA32 --hash -j 12
Code: Select all
# Adapt the lib names/versions accordingly
CONFIG(debug, debug|release) {
LIBS += libtorrentd.lib \
libboost_system-vc90-mt-sgd-1_51.lib
} else {
LIBS += libtorrent.lib \
libboost_system-vc140-mt-s-1_60.lib \
libboost_chrono-vc140-mt-s-1_60.lib \
libboost_random-vc140-mt-s-1_60.lib
}
Code: Select all
# Point this to the libtorrent include folder
INCLUDEPATH += $$quote(C:/qBittorrent/install_msvc/base/include/boost)
Code: Select all
# Point this to the libtorrent include folder
INCLUDEPATH += $$quote(C:/qBittorrent/install_msvc/base/include/boost)
This is what it should beINCLUDEPATH += $$quote(G:/qBittorrent/install_msvc/base/include/boost-1_60)
INCLUDEPATH += $$quote(C:/qBittorrent/install_msvc/base/include/boost)
I did it and independently to how yo edit that pri file, MSVC looks for "boost"at some point when compiling, not boost-1_60.I specifically say what lines to edit and what lines to comment out in the .pri files. It means that you need to put the correct boost folder name and boost .lib names.