<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

  <channel>

  
  <title>Qt DevNet forums: Tools 1280614020**  </title>
  <link>http://qt-project.org/forums/viewforum/13/</link>
  <description>RSS feed for latest posts in Tools</description>
  <copyright>Copyright 2013 Qt Project</copyright>
  <docs>http://www.rssboard.org/rss-specification</docs>
  <generator>ExpressionEngine v2.3.1 http://expressionengine.com/</generator>
  <lastBuildDate>Sun, 01 Aug 2010 00:07:00 GMT</lastBuildDate>
  <atom:link href="http://qt-project.org/feeds/all_forums/13" rel="self" type="application/rss+xml" />
  
  
  
        <item>
            <title>Qt Project date error in articles</title>
            <link>http://qt-project.org/forums/viewreply/129897</link>
            <author>Raul</author>
            <description><![CDATA[hahaha yeah sometimes the brain can really play some bad tricks on us!

	Thanks for helping me out]]></description>
            <guid isPermaLink="false">9f8cde0a8bc35bd5288a4cee77bee8f8</guid>
            <pubDate>Tue, 18 Jun 2013 22:38:34 GMT</pubDate>
        </item>
  
        <item>
            <title>Doxygen for Qt Creator 2.7.0</title>
            <link>http://qt-project.org/forums/viewreply/129887</link>
            <author>koahnig</author>
            <description><![CDATA[yeah, I read that readme&#8230; this is where I tried to run qmake &#45;r .. or make, but these commands are not known. So then I added the mingw\bin path and it is still not known, so this was confusing me :(

	I will try it again tomorrow, but I am not sure that I have all that I need&#8230;
Well, need to type the path with the commands. Alternatively, you can add the path to environment. I would clean the path setting anyway before starting to build. It helps to know what the system is using ;&#45;)]]></description>
            <guid isPermaLink="false">a9284e2a15347d99e7a54f0dc44191a1</guid>
            <pubDate>Tue, 18 Jun 2013 20:43:00 GMT</pubDate>
        </item>
  
        <item>
            <title>Read QNwtworkReply</title>
            <link>http://qt-project.org/forums/viewthread/28996</link>
            <author>rajatgupta431</author>
            <description><![CDATA[Hi , In a QNetworkReply i have a non html reply , how do i read this ? readAll() returns nothing . For eg . http://ubaid.tk/sms/sms.aspx?uid=rajatgupta431&amp;amp;pwd=88888888888t&amp;amp;msg=om namashivaye&amp;amp;phone=9872372031&amp;amp;provider=indyarocks]]></description>
            <guid isPermaLink="false">55b6484ee59e59453edbaf6c17ffc1ff</guid>
            <pubDate>Tue, 18 Jun 2013 17:38:12 GMT</pubDate>
        </item>
  
        <item>
            <title>Qt Project date error in articles</title>
            <link>http://qt-project.org/forums/viewthread/28992</link>
            <author>Raul</author>
            <description><![CDATA[Hi,

	I didn&#8217;t know where to post this, but I&#8217;d like to report that there&#8217;s an error on the creation date of an article in the Qt Project website.

	In the text right after the article title, it says: &#8220;Published XX&#8221; well, in the comments, the posts have the format &#8220;Month dayNumber, Year&#8221; but on the articles it states: &#8220;DayName dayNumber, Year&#8221; I guess it&#8217;s a small typo on setting the date output format for articles, but it&#8217;s a bit annoying for me, as I want to see articles of certain months for this year.

	Thanks]]></description>
            <guid isPermaLink="false">a73e961b77adaecc15cc86b3ae6f8d8f</guid>
            <pubDate>Tue, 18 Jun 2013 16:55:00 GMT</pubDate>
        </item>
  
        <item>
            <title>Include files in Qt  ,the location of libraries</title>
            <link>http://qt-project.org/forums/viewreply/129770</link>
            <author>koahnig</author>
            <description><![CDATA[Thanks,
just to be clear,I use 

	#include &amp;quot;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&amp;quot;


	when the header file is in some directory and use 

	#include &amp;lt;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&amp;gt;


 when the header file is encapsulated in a library.What should I do to be able to use the second syntax and compile without getting those underline errors.
Thanks.

Those are the include declarations in the source code.  The include files for libraries are typically on separate directories as you note. Qt creator needs to know where to find these includes, as the compiler has to know as well. The qmake LIBS is for libraries as you already found out, but it is only affecting the linking step, not the compilation of your source code. 
For compilation your compiler has to know where the includes are found and also has Qt creator to know where to find your includes. 
Therefore, you have to add in the INCLUDEPATH the folders/directories with the include files. The path may be completely identical to the one you are passing to LIBS, but you have to declare separately.]]></description>
            <guid isPermaLink="false">5a94fe938f32bd7096073b977a83e7c0</guid>
            <pubDate>Tue, 18 Jun 2013 09:08:53 GMT</pubDate>
        </item>
  
        <item>
            <title>Include files in Qt  ,the location of libraries</title>
            <link>http://qt-project.org/forums/viewthread/28969</link>
            <author>QSamBok</author>
            <description><![CDATA[Hi,
I am new to Qt and am trying to learn from an open source project called qt&#45;box&#45;editor.When I open the project in Qt creator i find that includes like the following

	#include &amp;lt;leptonica/allheaders.h&amp;gt;


	are underlined meaning that something is wrong.These are libraries that the project uses,one is leptonica and the other is tesseract.I know I can go and copy the headers from the libraries one by one in my project but I want to learn the proper way to do this.

	My .pro file refers to them like this:
LIBS += &#45;llept &#45;ltesseract


	To wrap up my problem is this :where can I put those libraries to make my project compile normally.And just to be sure,these are static libraries,right?
Sorry if I ask stupid questions as I am trying to find my way into this.
Thanks.
Edit:I am using Windows 7,32bit, vs2010 and Qt 4.8.1 Qt Creator 2.4.1]]></description>
            <guid isPermaLink="false">c2fce9f853a9a8b8ba2e1c1f7400e154</guid>
            <pubDate>Tue, 18 Jun 2013 08:27:14 GMT</pubDate>
        </item>
  
        <item>
            <title>qtcreator add linux device, ssh password always rejected</title>
            <link>http://qt-project.org/forums/viewreply/129679</link>
            <author>arthurd</author>
            <description><![CDATA[I installed dropbear on the target next to the already installed openssh and now it works.

	I will submit a bug report anyway, because first of all, why does it work only with dropbear, and secondly, if there is a good reason for that, it should be clearly mentioned in the GUI and/or user manual. Currently it is not mentioned in either of them.]]></description>
            <guid isPermaLink="false">84632e70a88b32686b87f8c71d474911</guid>
            <pubDate>Mon, 17 Jun 2013 16:06:08 GMT</pubDate>
        </item>
  
        <item>
            <title>GUI designer for Qt Installer Framework</title>
            <link>http://qt-project.org/forums/viewreply/129662</link>
            <author>mbnoimi</author>
            <description><![CDATA[Yes but is works ok :) 
	

	Actually it doesn&#8217;t work perfectly just like other installers (ex. NSIS) specially in case of dealing with OS privileges (I face huge problem with Windows 7 where it was working smoothly in Linux) for that I left it and I found IFW a promising solution specially it&#8217;s Qt based so I can integrate it into my usual Qt projects&#8230; Voila

	By the way, where IFW users it seems no one use it!!!!]]></description>
            <guid isPermaLink="false">4f2d5e3becbb7de5d2e172ab2335f742</guid>
            <pubDate>Mon, 17 Jun 2013 13:46:21 GMT</pubDate>
        </item>
  
        <item>
            <title>qtcreator add linux device, ssh password always rejected</title>
            <link>http://qt-project.org/forums/viewthread/28932</link>
            <author>arthurd</author>
            <description><![CDATA[Hi,

	I am trying to setup qt&#45;creator for remote debugging on my beagleboard and raspberry pi.

	When I try to add a &#8220;generic linux device&#8221; in &#8220;Tools &#45;&amp;gt; Options &#45;&amp;gt; Devices&#8221; , the connection test always results in:

	Connecting to host&#8230;
SSH connection failure: Server rejected password.

	From the command line, I can ssh to the device without any problem, using the same username and password.  I even tried to connect to another linux desktop i.so. the raspberry pi, which gives the same result: password rejected. I also tried it at work to rule out a network issue, same problem.

	In the messages file of the targets I see this report:
1970&#45;01&#45;01T01:36:02.570853+00:00 raspberrypi sshd19798: Received disconnect from 10.6.11.147: 11:  [preauth]

	I left the &#8220;SSH port&#8221;, &#8220;Free ports&#8221;, &#8220;Timeout&#8221; fields all at their default value.

	Is there something I am missing?
Thanks in advance for any clues.

	platform used:
Host: openSuse 12.3 64bit, QtCreator 2.7.1 based on Qt 4.8.4.
           firewall disabled

	Target: raspberry pi, openSuse 12.3 ARM port]]></description>
            <guid isPermaLink="false">c0305c9ad33b8463702576bf1797bc36</guid>
            <pubDate>Mon, 17 Jun 2013 11:56:20 GMT</pubDate>
        </item>
  
        <item>
            <title>Qt 5.0.2 MinGw opencv2.4.4 integration</title>
            <link>http://qt-project.org/forums/viewthread/28930</link>
            <author>canavaroski90</author>
            <description><![CDATA[Hi all!

	I&#8217;m trying to integrate opencv to Qt environment. 

	Here is what I&#8217;ve done so far;
&#45; Installed Qt 5.0.2 &#45; 32bit &#40;with qt creator 2.7.0 and mingw compiler&#45; not msvc&#41;
&#45; Installed opencv2.4.4 under C:\OpenCv\
&#45; Added C:\OpenCv\build\x86\mingw\lib and C:\OpenCv\build\x86\mingw\bin directories to the ENVIRONMENT VARIABLES.


	and here is my .pro file

	INCLUDEPATH += C:\OpenCv\build\include \
INCLUDEPATH += &amp;quot;C:\OpenCv\modules\core\include&amp;quot; \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;C:\OpenCv\modules\highgui\include&amp;quot;
BASE_PATH = c:/OpenCv/build/x86/mingw
CONFIG&#40;release,debug|release&#41;
&#123;
win32: LIBS += &#45;L$$BASE_PATH/lib/ &#45;lopencv_calib3d244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_contrib244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_core244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_features2d244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_flann244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_gpu244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_highgui244\
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_imgproc244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_legacy244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_ml244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_objdetect244 \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_video244
&#125;
CONFIG&#40;debug,debug|release&#41;
&#123;
win32: LIBS += &#45;L$$BASE_PATH/lib/ &#45;lopencv_calib3d244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_contrib244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_core244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_features2d244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_flann244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_gpu244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_highgui244d\
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_imgproc244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_legacy244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_ml244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_objdetect244d \
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#45;lopencv_video244d
&#125;


	When I try to build the project it gaves me following error:
:&#45;1: error: cannot find &#45;lopencv_calib3d244d


	I&#8217;ve noticed that the files under the \lib\ folder are named like this;
libopencv_calib3d244.dll.a
libopencv_contrib244.dll.a
...


	However I couldn&#8217;t add .a files to the project.

	Is there a missing step or anything else that I am not doing correctly?

	What sould I do now?

	Best regards.]]></description>
            <guid isPermaLink="false">4926de7e4750c5ae8fb67c82237fa873</guid>
            <pubDate>Mon, 17 Jun 2013 11:48:08 GMT</pubDate>
        </item>
  

  </channel>
</rss>