I am trying to compile qBittorrent 3.1.9.2 for windows but unfortunately it doesn´t work.
I use:
-Qt Creator with Qt 4.8.2 kit
-openssl-SNAP-20140526 (Kerberos deactivated)
-boost_1_55_0
-libtorrent-rasterbar-0.16.16
There are no compile errors, but many warnings till the last step:
"Das System kann die angegebene Datei nicht finden." is german. It means the system could not find the file. It looks pretty much like a windows error.g++ -Wl,-s -mthreads -Wl,-subsystem,windows -o release\qbittorrent.exe object_script.qbittorrent.Release -L"c:\Qt\4.8.6\lib" -lmingw32 -lqtmain release\qbittorrent_mingw_res.o -LC:/qBittorrent/boost_1_51_0/stage/lib -LC:/qBittorrent/RC_0_16/bin/<path-according-to-the-build-options-chosen> -LC:/qBittorrent/Zlib/lib -ltorrent -lboost_system-mgw45-mt-1_47 -lboost_filesystem-mgw45-mt-1_47 -lboost_thread-mgw45-mt-1_47 -ladvapi32 -lshell32 -luser32 -lcrypto.dll -lssl.dll -lwsock32 -lws2_32 -lz -liconv.dll -lpowrprof -lQtXml4 -lQtGui4 -lQtNetwork4 -lQtCore4
Das System kann die angegebene Datei nicht finden.
Well the problem is "<path-according-to-the-build-options-chosen>" and the slashes after that i think.
A look in Makefile.Release reveals the following:
What is "<path-according-to-the-build-options-chosen>" supposed to be ?LIBS = -L"c:\Qt\4.8.6\lib" -lmingw32 -lqtmain release\qbittorrent_mingw_res.o -LC:/qBittorrent/boost_1_51_0/stage/lib -LC:/qBittorrent/RC_0_16/bin/<path-according-to-the-build-options-chosen> -LC:/qBittorrent/Zlib/lib -ltorrent -lboost_system-mgw45-mt-1_47 -lboost_filesystem-mgw45-mt-1_47 -lboost_thread-mgw45-mt-1_47 -ladvapi32 -lshell32 -luser32 -lcrypto.dll -lssl.dll -lwsock32 -lws2_32 -lz -liconv.dll -lpowrprof -lQtXml4 -lQtGui4 -lQtNetwork4 -lQtCore4
As you can see I use the mingw compiler.
Thanks in advance.