<div dir="ltr">On Mon, Sep 1, 2008 at 3:27 AM, Ingrid Kemgoum <span dir="ltr"><<a href="mailto:ingrid.kemgoum@gmail.com">ingrid.kemgoum@gmail.com</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 dir="ltr"><div>hi,</div>
<div>i'm trying to export only some functions of a library with cmake</div>
<div>i know with windows we use <b>__declspec(dllimport)</b> and <b>__declspec(dllexport)</b> to generate the appropriate .lib of the dll</div>
<div>is there a manner of generating the .map ?</div></div></blockquote><div><br>Just specify the MSVC linking flag to generate map files using SET_TARGET_PROPERTIES and the .map file should be generated. Usually the more popular options in the Visual Studio GUI have command line options listed right next to them.<br>
<br>Incidentally, CMake doesn't have "/MAP" in it's list of understood VS flags so it will show up under the Additional Linking Flags section of the Linker properties and not where you're probably used to seeing it.<br>
<br>==============<br>CMAKE_MINIMUM_REQUIRED(VERSION 2.6)<br>PROJECT(foo)<br>ADD_LIBRARY(foo SHARED foo.cc)<br>IF(MSVC)<br> SET_TARGET_PROPERTIES(foo PROPERTIES LINK_FLAGS "/MAP")<br>ENDIF()<br></div></div><br>
-- <br>Philip Lowman<br>
</div>