<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Installing Qt 4.6 on Windows</title>
	<atom:link href="http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/</link>
	<description></description>
	<lastBuildDate>Thu, 02 Sep 2010 22:40:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: John</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-319</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 11 May 2010 02:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-319</guid>
		<description>I believe that is the correct solution - all of my Qt projects are also linked to the various library dependencies you have listed above. I&#039;m glad you figured it out.</description>
		<content:encoded><![CDATA[<p>I believe that is the correct solution &#8211; all of my Qt projects are also linked to the various library dependencies you have listed above. I&#8217;m glad you figured it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merza</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-317</link>
		<dc:creator>Merza</dc:creator>
		<pubDate>Thu, 29 Apr 2010 22:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-317</guid>
		<description>thanks for your quick reply, and sorry for my late one :)
well my code is a very simple one, just to check that everything is ok .. it&#039;s nothing more than :

#include &quot;qt\qapplication.h&quot;
#include &quot;qt\qlabel.h&quot;

int main(int argc, char*argv[]) {
	QApplication app(argc, argv);
	QLabel *label = new QLabel(&quot;Hello Qt&quot;);
	label-&gt;show();

	return app.exec();
}

the error is namely :
error LNK2019: unresolved external symbol _WSAAsyncSelect@16 referenced in function &quot;public: void __thiscall QEventDispatcherWin32Private::doWsaAsyncSelect(int)&quot; (?doWsaAsyncSelect@QEventDispatcherWin32Private@@QAEXH@Z)
1&gt;C:\Users\Merza\Documents\Visual Studio 2008\Projects\first_qt_empty\Debug\first_qt_empty.exe : fatal error LNK1120: 1 unresolved externals

i could solve the problem by copying all linker input paramaters from a Qt project into my empty one .. and tada :)
these parameters are :
kernel32.lib
user32.lib
shell32.lib
uuid.lib
ole32.lib
advapi32.lib
ws2_32.lib
gdi32.lib
comdlg32.lib
oleaut32.lib
imm32.lib
winmm.lib
winspool.lib
qtmaind.lib
QtCored.lib
QtGuid.lib

but i think there must a more professional solution, or ?!
p.s. sorry for the long post :&#124;</description>
		<content:encoded><![CDATA[<p>thanks for your quick reply, and sorry for my late one <img src='http://johnhforrest.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
well my code is a very simple one, just to check that everything is ok .. it&#8217;s nothing more than :</p>
<p>#include &#8220;qt\qapplication.h&#8221;<br />
#include &#8220;qt\qlabel.h&#8221;</p>
<p>int main(int argc, char*argv[]) {<br />
	QApplication app(argc, argv);<br />
	QLabel *label = new QLabel(&#8220;Hello Qt&#8221;);<br />
	label-&gt;show();</p>
<p>	return app.exec();<br />
}</p>
<p>the error is namely :<br />
error LNK2019: unresolved external symbol _WSAAsyncSelect@16 referenced in function &#8220;public: void __thiscall QEventDispatcherWin32Private::doWsaAsyncSelect(int)&#8221; (?doWsaAsyncSelect@QEventDispatcherWin32Private@@QAEXH@Z)<br />
1&gt;C:\Users\Merza\Documents\Visual Studio 2008\Projects\first_qt_empty\Debug\first_qt_empty.exe : fatal error LNK1120: 1 unresolved externals</p>
<p>i could solve the problem by copying all linker input paramaters from a Qt project into my empty one .. and tada <img src='http://johnhforrest.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
these parameters are :<br />
kernel32.lib<br />
user32.lib<br />
shell32.lib<br />
uuid.lib<br />
ole32.lib<br />
advapi32.lib<br />
ws2_32.lib<br />
gdi32.lib<br />
comdlg32.lib<br />
oleaut32.lib<br />
imm32.lib<br />
winmm.lib<br />
winspool.lib<br />
qtmaind.lib<br />
QtCored.lib<br />
QtGuid.lib</p>
<p>but i think there must a more professional solution, or ?!<br />
p.s. sorry for the long post <img src='http://johnhforrest.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-316</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 21 Apr 2010 10:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-316</guid>
		<description>Could you give me a little more detail on the linker error? There are various reasons for linker errors other than Qt. If you would like you could email the source code to johnATjohnhforrestDOTcom (replace the words with their symbols). Thanks for the feedback, I&#039;m glad the guide helped.</description>
		<content:encoded><![CDATA[<p>Could you give me a little more detail on the linker error? There are various reasons for linker errors other than Qt. If you would like you could email the source code to johnATjohnhforrestDOTcom (replace the words with their symbols). Thanks for the feedback, I&#8217;m glad the guide helped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merza</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-315</link>
		<dc:creator>Merza</dc:creator>
		<pubDate>Wed, 21 Apr 2010 09:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-315</guid>
		<description>hey,
that was so useful, thanks :) But :
when i create a Qt project (in VS2008) it compiles correctly .. the problem is when i start an empty win32 project and try to post some own code, i get LNK2019 error. any ideas ?!</description>
		<content:encoded><![CDATA[<p>hey,<br />
that was so useful, thanks <img src='http://johnhforrest.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But :<br />
when i create a Qt project (in VS2008) it compiles correctly .. the problem is when i start an empty win32 project and try to post some own code, i get LNK2019 error. any ideas ?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-310</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 22 Mar 2010 13:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-310</guid>
		<description>If you are using Visual Studio 2008 with the add-in, try going to Qt Project Settings and choose the Qt version installed from the drop box there. 

If that doesn&#039;t work, could you give me a little more information on the error? Did you follow all the steps in the guide exactly as they are stated?</description>
		<content:encoded><![CDATA[<p>If you are using Visual Studio 2008 with the add-in, try going to Qt Project Settings and choose the Qt version installed from the drop box there. </p>
<p>If that doesn&#8217;t work, could you give me a little more information on the error? Did you follow all the steps in the guide exactly as they are stated?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atul</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-309</link>
		<dc:creator>Atul</dc:creator>
		<pubDate>Mon, 22 Mar 2010 08:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-309</guid>
		<description>Hi 
I have install qt 4.6.0 commercial version, I not able to create new project it is giving me &quot;unable to fine qt build .To solve this problem specify qt build&quot;.
Another error while i trying to open .pro using Qt menu after installing qt-addin

please help me to solved this problem</description>
		<content:encoded><![CDATA[<p>Hi<br />
I have install qt 4.6.0 commercial version, I not able to create new project it is giving me &#8220;unable to fine qt build .To solve this problem specify qt build&#8221;.<br />
Another error while i trying to open .pro using Qt menu after installing qt-addin</p>
<p>please help me to solved this problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-259</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 19 Jan 2010 21:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-259</guid>
		<description>I&#039;m glad you found it useful, thanks for the comment! It&#039;s always good to hear positive feedback.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad you found it useful, thanks for the comment! It&#8217;s always good to hear positive feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carck3r</title>
		<link>http://johnhforrest.com/2010/01/installing-qt-4-6-on-windows/comment-page-1/#comment-258</link>
		<dc:creator>carck3r</dc:creator>
		<pubDate>Tue, 19 Jan 2010 20:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://johnhforrest.com/?p=221#comment-258</guid>
		<description>Thank you very much. It helped me. Perfect tutorial.</description>
		<content:encoded><![CDATA[<p>Thank you very much. It helped me. Perfect tutorial.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
