Hello,
I am new to Qt and just finished some beginner tutorials. I am using Ubuntu and first i installed Qt creator from .deb package.
Now i want my application to use ssh connection and i found this
http://doc.qt.nokia.com/qtcreator-extend…connection.html but when realised that <Utils/SshConnection> doesnt exists i installed QT creator from source from git
http://qt.gitorious.org/qt-creator/qt-creator
Well, after successfull install i still cannot find any SSH or Utils libs so I rebuild it with:
|
Source code
|
1
|
qmake -recursive "QT_PRIVATE_HEADERS=/usr/include/qt4/" ../../QT_CREATOR_GIT/qt-creator/qtcreator.pro
|
and then:
|
Source code
|
1
|
make -B && make install
|
The result is loong compilation where i saw that all ssh* source files were compiled. Then i found
libUtils.so.1.0.0 in
/lib/qtcreator/ but i still cant find any SSH header .
How to add those additional components?
Do i need to install QTCreator from source or it could be included additionaly?
Do i need to change qtcreator.pro to include
Utils?
Thanks!