<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>Linux Format forums</title>
  <link>http://linuxformat.com/forums/index.php</link>
  <description>Help, discussion, magazine feedback and more</description>
  <language>english</language>
  <copyright>(c) Copyright Thu Jun 20, 2013 9:11 am by Linux Format forums</copyright>
  <managingEditor>webmaster@linuxformat.com</managingEditor>
  <webMaster>webmaster@linuxformat.com</webMaster>
  <pubDate>Thu Jun 20, 2013 9:11 am</pubDate>
  <lastBuildDate>Thu Jun 20, 2013 9:11 am</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>Linux Format forums</title>
    <url></url>
    <link>http://linuxformat.com/forums/</link>
    <description>Help, discussion, magazine feedback and more</description>
  </image>

                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19368#19368</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=6646'&gt;thoughtpolice&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Mar 19, 2006 6:13 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I'll give it a go.   Thanks</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19368#19368</comments>
                                        <author>thoughtpolice</author>
                                        <pubDate>Sun Mar 19, 2006 6:13 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19368#19368</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19336#19336</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5530'&gt;GMorgan&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat Mar 18, 2006 9:29 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Three makefiles  &lt;img src=&quot;images/smiles/icon_confused.gif&quot; alt=&quot;Confused&quot; border=&quot;0&quot; /&gt;  there should only be one at most. What happens when you try to run qmake -project. Remember that the folder the source is in should have the same name as the main source file. If you wrote the code using KDevelop there should be a src directory within the project folder. The source files would be in there. Copy them into a directory with the same name as the main source file then run qmake as I described above.&lt;br /&gt;
&lt;br /&gt;
Make sure you run the qmake -main.pro step where main is the name of the folder the source is in. This will develop a Makefile you can then compile with make.</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19336#19336</comments>
                                        <author>GMorgan</author>
                                        <pubDate>Sat Mar 18, 2006 9:29 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19336#19336</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19314#19314</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=6646'&gt;thoughtpolice&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat Mar 18, 2006 1:21 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I'm still wrestling with my above problem, and when I run, I get a message that there is no makefile, but I've quadruple checked, there's 3 makefiles upon opening the directory.&lt;br /&gt;
&lt;br /&gt;
 &lt;img src=&quot;images/smiles/icon_confused.gif&quot; alt=&quot;Confused&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19314#19314</comments>
                                        <author>thoughtpolice</author>
                                        <pubDate>Sat Mar 18, 2006 1:21 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19314#19314</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19307#19307</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5530'&gt;GMorgan&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri Mar 17, 2006 9:09 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I've solved it now. You have to use the QMake command rather than standard c++ methods. When you create a KDevelop project select a QMake 'hello world' rather than a standard one. The will run the QMake command for you. The other posibility is to create a folder (say hello with main file hello.cpp) then cd to that &lt;br /&gt;
&lt;br /&gt;
folder and run qmake -project &lt;br /&gt;
then qmake hello.pro&lt;br /&gt;
finally make.&lt;br /&gt;
&lt;br /&gt;
Obviously this is dependant on the correct tools being installed.&lt;br /&gt;
&lt;br /&gt;
My problem was I just assumed that Qt uses standard C++ headers and could compile directly on a normal compiler. You have to run QMake first.&lt;br /&gt;
&lt;br /&gt;
How you get it working in Dev-CPP I don't know.</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19307#19307</comments>
                                        <author>GMorgan</author>
                                        <pubDate>Fri Mar 17, 2006 9:09 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19307#19307</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19304#19304</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=6646'&gt;thoughtpolice&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri Mar 17, 2006 8:02 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      let me make sense of that, &lt;br /&gt;
&lt;br /&gt;
I WAS on bloodshed and now I'm trying to work in kdevelop &lt;img src=&quot;images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19304#19304</comments>
                                        <author>thoughtpolice</author>
                                        <pubDate>Fri Mar 17, 2006 8:02 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19304#19304</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=19302#19302</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=6646'&gt;thoughtpolice&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri Mar 17, 2006 8:01 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I've also got something that may be similar to your issue&lt;br /&gt;
&lt;br /&gt;
I'm coming from bloodshed's dev c++ and a bit confused here, when trying to run a hello world, I'm getting a message that there is no makefile and configure script - what is this?&lt;br /&gt;
&lt;br /&gt;
and then after running ./configure I have this error message&lt;br /&gt;
checking for Qt... configure: error: Qt (&amp;gt;= Qt 3.2) (library qt-mt) not found. Please check your installation!&lt;br /&gt;
&lt;br /&gt;
are these hand in hand?</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=19302#19302</comments>
                                        <author>thoughtpolice</author>
                                        <pubDate>Fri Mar 17, 2006 8:01 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=19302#19302</guid>
                                      </item>
                                      <item>
                                        <title>Re: Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=18985#18985</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=53'&gt;wiz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Mar 13, 2006 10:17 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Try using Adept to download the matching kubuntu Qt &amp;amp; kdevelop packages.&lt;br /&gt;
&lt;br /&gt;
Installing from a Qt tar.gz will put the header files &amp;amp; libraries in odd places and will require an enormous amount of faffing about symlinking everything here &amp;amp; there. I tried to do this myself (once).</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=18985#18985</comments>
                                        <author>wiz</author>
                                        <pubDate>Mon Mar 13, 2006 10:17 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=18985#18985</guid>
                                      </item>
                                      <item>
                                        <title>Using qt3 with Kdevelop.</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=18971#18971</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5530'&gt;GMorgan&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Mar 13, 2006 8:12 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I've been trying to get qt3 to work with Kdevelop in Kubuntu. I've downloaded and installed the qt-x11-free-3.3.5.tar.gz file from the trolltech site but Kdevelop still doesn't find the headers qapplication.h and qlabel.h. Anyone know how to get it running.</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=18971#18971</comments>
                                        <author>GMorgan</author>
                                        <pubDate>Mon Mar 13, 2006 8:12 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=18971#18971</guid>
                                      </item></channel></rss>