0I'm trying to do SFTP in qtcreator (installed in rpi noobs). I have come across this project https://github.com/sandsmark/QSsh. While following these steps:
git clone https://github.com/sandsmark/QSsh.git
cd QSsh
mkdir build
cd build
qmake ../qssh.pro
make (or mingw32-make or nmake depending on your platform)
In the last command I get an error saying "botan development package not found". I have also installed botan using the following command.
sudo apt-get install botan
and now botan is present. But I get the same error again and again. What I'm missing here.
You need install builded library. Run
make installafter you build botan-2. A folder with the library will be created. (For me it was aC:/mingw/lib/libbotan-2.a). Add installedbotan-2library intoqsshproject inQt(right click on project folder ->Add Library->Externaland choose a filelibbotan-2.a.In my case,
Qtadded the following commands inssh.profileNow Qt project can be correct build... I hope my solution will help!