Just a note on the targets that were not added in my project: we have some cmake variables that select which targets get build, e.g. SET ( COMPILE_TARGET_A  1 )<br><br>I used to have the following lines in my code (which didn't get kdevelop to generate my projects:<br>
IF( ${COMPILE_TARGET_A} )<br>   ADD_SUBDIRECTORY( target_a_dir )<br>ENDIF( ${COMPILE_TARGET_A} )<br><br>After replacing them with the following more common syntax, they were all automatically added:<br>IF( COMPILE_TARGET_A )<br>

   ADD_SUBDIRECTORY( target_a_dir )<br>
ENDIF( COMPILE_TARGET_A )<br>
<br>Iman<br><br><div class="gmail_quote">On Mon, Nov 2, 2009 at 1:51 PM, Iman Brouwer <span dir="ltr"><<a href="mailto:iman.brouwer@gmail.com">iman.brouwer@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks Andreas. I removed the kdevplatform1-libs package and it runs great now.<br>( I had keep "ADD_SUBDIRECTORY( tests ) commented out to prevent the compiler error i mentioned in my previous email ).<br><br>It's the first time i run kdevelop4 and wow, it's really amazing. For example the auto-completion, i've never seen anything work like that. Boost, std it just all seems to work!<br>

<br>Thank you guys!<br><font color="#888888"><br>Iman<br></font><br>P.S. I imported a project that has about a 100 targets. I noticed that only a fraction of them get recognized as a kdevelop4 target (as in that you can right-click them and choose 'build' or add them to the build set). <br>
<div><div></div><div class="h5">
<br><div class="gmail_quote">On Mon, Nov 2, 2009 at 12:03 PM, Andreas Pakulat <span dir="ltr"><<a href="mailto:apaku@gmx.de" target="_blank">apaku@gmx.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<div>On 02.11.09 12:08:11, Iman Brouwer wrote:<br>
> Hello,<br>
><br>
> I'm trying to compile the new beta6 which I just downloaded from one of the<br>
> ftp servers. I did run into the following errors when compiling, and then<br>
> running.<br>
<br>
</div>Looks like you still have some kdevelop/kdevplatform stuff installed via<br>
packages? Please make sure to remove any previously-installed part and<br>
pieces of kdevelop before building it yourself.<br>
<br>
Andreas<br>
<font color="#888888"><br>
--<br>
A day for firm decisions!!!!!  Or is it?<br>
</font><div><div></div><div><br>
--<br>
KDevelop-devel mailing list<br>
<a href="mailto:KDevelop-devel@kdevelop.org" target="_blank">KDevelop-devel@kdevelop.org</a><br>
<a href="https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel" target="_blank">https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel</a><br>
</div></div></blockquote></div><br>
</div></div></blockquote></div><br>