All,<br><br>if I have several configurations (e.g. /MT, /MTd, /MD, /MDd), how can I pass additional libraries to the target_link_libraries? I have two optimized libaries. One for /MT and one for /MD.<br><br>Thanks,<br>Dima<br>
<br><div class="gmail_quote">2009/2/25  <span dir="ltr">&lt;<a href="mailto:jesseperla@gmail.com">jesseperla@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Wed, Feb 25, 2009 at 1:38 AM, Hendrik Sattler &lt;<a href="mailto:post@hendrik-sattler.de" target="_blank">post@hendrik-sattler.de</a>&gt; wrote:<br>debug and optimized keywords are followed by _one_ library. The help entry<br>
defines this correctly.<br><br></div>Thanks and sorry I missed that in the help.  cmake really is amazing, but I also find it massive.  The &quot;Mastering Cmake&quot; book is excellent, but if people write an even longer text with lots of tutorial examples I promise to buy it.<br>
<br>I have now changed things around to do the following:<br>#Set in my find module.<br>set(ETK_LIBS   debug scl-d<br>                        optimized scl<br>                        debug libIpopt-mt-d<br>                        optimized libIpopt-mt) #in reality, there are about 20 libs<br>
<br>#set in my cmakelists.txt for my project.<br>add_executable(hello2 ${hello2_SRCS})<br>target_link_libraries(hello2 ${ETK_LIBS })<br><br>Is this the best way to setup long lists of libraries to link in?<br><br>And is there any way for me to have separate lists that work for my custom build type that works in visual studio?  I want an MPI and heavily optimized build type that people can choose.<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></blockquote></div><br>