On Thu, Dec 11, 2008 at 12:19 PM, Andreas Pakulat <span dir="ltr"><<a href="mailto:apaku@gmx.de">apaku@gmx.de</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="Wj3C7c">On 11.12.08 10:55:42, Robert Dailey wrote:<br>
> If I have a project in CMake that builds a shared library, what will happen<br>
> if I set this shared library project as a parameter in<br>
> target_link_libraries() for an executable project? What will happen to the<br>
> DLL file? Will CMake copy it to the executable output directory<br>
> automatically, or must I do this manually through CMake -E?<br>
<br>
</div></div>Inside the builddir? No it won't. If you however use the install() method<br>
together with the RUNTIME, ARCHIVE and LIBRARY options it will install the<br>
.dll into the RUNTIME directory and the import library into the ARCHIVE<br>
directory. So just make sure to provide all three for any install() call<br>
and .exe and .dll will end up in the same directory.</blockquote></div><br>I'm finding that INSTALL() will not work unless a target is already
defined. This logically makes sense, of course, however this makes the
order in which I define my targets sensitive. Is it possible to
reference a target before it has been defined, or must I organize my
projects accordingly?<br>