<div class="gmail_quote">On Tue, Apr 28, 2009 at 7:44 AM, Marcel Loose <span dir="ltr">&lt;<a href="mailto:loose@astron.nl">loose@astron.nl</a>&gt;</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;">
Hi all,<br>
<br>
I&#39;ve been searching the documentation, but couldn&#39;t find a way to<br>
specify that I want to create a statically linked binary. The only<br>
platform-specific and even compiler-specific answer I could find was to<br>
add &quot;-static&quot; to CMAKE_EXE_LINKER_FLAGS.<br>
<br>
Now this solves only part of the problem. Suppose I want to link against<br>
the static library of some 3rd party package Foo. Suppose that Foo only<br>
supplies a libfoo.so (but I&#39;m unaware of this fact).<br>
<br>
When I search for the foo-library using find_library(foo_library foo) I<br>
find a match, so CMake happily trods on. But when I type &#39;make&#39;, I&#39;ll<br>
discover to my dismay that the system cannot create a  statically linked<br>
executable, because it cannot find libfoo.a. Bummer!<br>
<br>
So my question is twofold:<br>
<br>
1) Is there a generic platform- and compiler-independent way to specify<br>
that you want to create a statically linked executable?<br>
<br>
2) How can I persuade find_library() to only search for static<br>
libraries?</blockquote><div><br>Not sure on the first.  For the second, provided you&#39;re running on an OS that has different file extensions for static vs. shared libraries and the name of the library is otherwise the same, you can use the CMAKE_FIND_LIBRARY_SUFFIXES variable.<br>
<br>Make sure you restore the value of CMAKE_FIND_LIBRARY_SUFFIXES after you are done making calls to find_library().<br></div></div><br>-- <br>Philip Lowman<br>