I want to use FTP in my current project, but since Qt5 ftp isn't available (only as add-on).
I downloaded the sources from here: https://github.com/qt/qtftp In Qt's forum, I found a instruction how to use it:
- Open Console in the qtftp-folder
- Generate the headers:
cd qtftp
,<QTDIR>/bin/syncqt.pl -version 5.2.0
- Run qmake
- Run make (mingw32-make)
- Run make install (mingw32-make install)
- Add
QT += ftp
in my .pro-file - Run qmake on my project
- compile my project.
So, I wanted to try these steps, but it fails on the first step, because the syncqt.pl cant be found, but I looked in the Qt-directory, and the file is there.
Anybody has an idea, how to fix/solve this? I am using Qt5.9.1