<div class="gmail_quote">On Tue, Jun 8, 2010 at 10:00 AM, Torri, Stephen CIV NSWCDD, W15 <span dir="ltr">&lt;<a href="mailto:stephen.torri@navy.mil">stephen.torri@navy.mil</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
&gt; From: Michael Wild [mailto:<a href="mailto:themiwi@gmail.com">themiwi@gmail.com</a>]<br>
&gt; Sent: Tue 6/8/2010 9:05 AM<br>
&gt; To: Torri, Stephen CIV NSWCDD, W15<br>
<div class="im">&gt; Cc: <a href="mailto:cmake@cmake.org">cmake@cmake.org</a><br>
&gt; Subject: Re: [CMake] Different configurations for Debug and Release<br>
&gt;<br>
&gt;<br>
</div><div class="im">&gt; &gt; In my project the external libraries I use have the debug library files are in a different directory from the release versions. &gt; &gt; I don&#39;t think I can use target_link_libraries to include a path as well as the name. In documentation I would use &gt; &gt; link_directories but there is no way in the syntax to distinguish a debug directory from a release directory. I am trying &gt; &gt; to generate a Visual Studio project that can build a debug release if I select &quot;Debug&quot; in the configuration manager drop &gt; &gt; down menu or &quot;Release&quot;. Is there a way for me to tell CMake that a certain set of directories the linker should use to &gt; &gt; search for files for the debug build versus another?<br>

&gt; &gt;<br>
&gt; &gt; Stephen<br>
&gt; &gt;<br>
&gt;<br>
&gt; Either use<br>
&gt;<br>
&gt; target_link_libraries(&lt;target&gt; debug &lt;debug_lib&gt; optimized &lt;opt_lib&gt; general &lt;gen_lib&gt;)<br>
&gt;<br>
&gt; or, for more control, create an imported library (add_library(&lt;lib_target&gt; IMPORTED)) and set the &gt; IMPORTED_LOCATION_&lt;config&gt; target properties to specify the location on the disk for each of the configurations &gt; you want to handle.<br>

<br>
</div>I did not think that I could use a full path to a library in the TARGET_LINK_LIBRARIES. Is that right?</blockquote><div><br></div><div>No, that is not right. On the contrary: we recommend that you use full paths to libraries in target_link_libraries calls.</div>
<div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I don&#39;t think what you suggest will work:<br>
<br>
     TARGET_LINK_LIBRARIES ( &lt;target&gt; &lt;child libs&gt; ${Boost_LIBRARIES}<br>
            ${MYSQLCPPCONNECTOR_LIB_DIR}/debug/mysqlcppconn-static.lib )<br></blockquote><div><br></div><div>This should work. Do you have a problem with it if you try it?</div><div><br></div><div>You can add debug and optimized versions like this (if those libraries exist):</div>
<div><br></div><div>    TARGET_LINK_LIBRARIES ( &lt;target&gt; &lt;child libs&gt; ${Boost_LIBRARIES}<br>           debug ${MYSQLCPPCONNECTOR_LIB_DIR}/debug/mysqlcppconn-static.lib<br></div><div><div>           optimized ${MYSQLCPPCONNECTOR_LIB_DIR}/release/mysqlcppconn-static.lib )<br>
</div><div><br></div><div>Then, in multi-configuration generators (VS and Xcode), CMake links debug to debug and release to release... Or in a makefile based build, the value of CMAKE_BUILD_TYPE is used to determine which libraries to link to.</div>
</div><div><br></div><div><br></div><div>HTH,</div><div>David</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
So I was looking at add_library. I am not sure I get the IMPORTED_LOCATION_&lt;config&gt;. First off what can I use for &lt;config&gt;? I tried IMPORTED_LOCATION_DEBUG but that gave me an error from cmake-gui saying its was an unknown cmake command. The documentation does not clearly define what &lt;config&gt; is other than stating its a configuration. Can you provide a simple example of what you are suggesting?<br>

<font color="#888888"><br>
Stephen<br>
</font><div><div></div><div class="h5"><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>
</div></div></blockquote></div><br>