<div>thanks Eric!</div><div><br></div><div>Cristobal</div><div><br><div class="gmail_quote">On Tue, Sep 13, 2011 at 7:12 PM, Eric Noulard <span dir="ltr">&lt;<a href="mailto:eric.noulard@gmail.com">eric.noulard@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">2011/9/13 Cristobal Navarro &lt;<a href="mailto:axischire@gmail.com">axischire@gmail.com</a>&gt;:<br>
<div><div></div><div class="h5">&gt; hello everyone!<br>
&gt; this is my first post on the mailing list<br>
&gt; i am making a shared library<br>
&gt; i have everything configured properly so that cmake creates de makefile<br>
&gt; scripts as espected<br>
&gt; at the moment cmake is installing my library by default into:<br>
&gt; /usr/local/lib/mylib.so.0.1 (and the symlink mylib.so)<br>
&gt; /usr/local/include/mylib.h<br>
&gt; my question is, how can i make it to install into it&#39;s own folder?? so<br>
&gt; everything lays inside<br>
&gt; /usr/local/mylib-0.1/...<br>
<br>
</div></div>use the DESTINATION argument of the INSTALL CMake command.<br>
and/or read the whole doc of the INSTALL CMake command.<br>
<br>
i.e.<br>
<br>
install(TARGETS mylib DESTINATION mylib-0.1)<br>
<font color="#888888"><br>
--<br>
Erk<br>
Membre de l&#39;April - « promouvoir et défendre le logiciel libre » -<br>
<a href="http://www.april.org" target="_blank">http://www.april.org</a><br>
</font></blockquote></div><br></div>