Thank you Raphael, it worked!<div><br></div><div>One last question: i've tried to compile my code using static linkage, once i need my daemon runs in many Linux releases. But, even static, in many systems my code crashes because the GLIBC version.</div>
<div><br></div><div>My question is: asking for static linkage in CMake can solve this problem? Or maybe another approach in CMake, where i embed all the needed libraries...</div><div><br></div><div>Thanks for your attention!<br>
<br><div class="gmail_quote">On Thu, Nov 3, 2011 at 12:19 PM, Raphael Kubo da Costa <span dir="ltr"><<a href="mailto:rakuco@freebsd.org">rakuco@freebsd.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Mauricio Klein<br>
<div class="im"><<a href="mailto:mauricio.klein.msk@gmail.com">mauricio.klein.msk@gmail.com</a>> writes:<br>
<br>
> I can compile all my codes without problems, but in the linkage step, i<br>
> receive a lot of errors about undefined reference to OpenSSL functions<br>
> (yes, my code uses OpenSSL).<br>
><br>
> In my own (and ugly :P) Makefile, i use "-lssl" flag in g++ compile line.<br>
><br>
> My question is: how can i pass this flag in CMake.<br>
> Also, i'm not sure if i'm using CMake correctly. Is correctly use "-lssl"<br>
> flag in CMake or i need to copy the library to a folder inside my project<br>
> and link to this copy?<br>
<br>
</div>You need to find OpenSSL with `find_package(OpenSSL)' and then, assuming<br>
it is found (ie. OPENSSL_FOUND is true), link to its libraries with<br>
`target_link_libraries(YOUR_APP ${OPENSSL_LIBRARIES})'.<br>
<font color="#888888"><br>
--<br>
<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</font></blockquote></div><br><br clear="all"><div><br></div>-- <br>Best regards,<br><br>MaurĂcio Souza Klein.<br>
</div>