<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"><<a href="mailto:eric.noulard@gmail.com">eric.noulard@gmail.com</a>></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 <<a href="mailto:axischire@gmail.com">axischire@gmail.com</a>>:<br>
<div><div></div><div class="h5">> hello everyone!<br>
> this is my first post on the mailing list<br>
> i am making a shared library<br>
> i have everything configured properly so that cmake creates de makefile<br>
> scripts as espected<br>
> at the moment cmake is installing my library by default into:<br>
> /usr/local/lib/mylib.so.0.1 (and the symlink mylib.so)<br>
> /usr/local/include/mylib.h<br>
> my question is, how can i make it to install into it's own folder?? so<br>
> everything lays inside<br>
> /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'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>