<div class="gmail_quote">On Fri, Feb 27, 2009 at 4:49 AM, ankit jain <span dir="ltr">&lt;<a href="mailto:ankitguddu@gmail.com">ankitguddu@gmail.com</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;">
<div>Hi ,</div>
<div> </div>
<div>I have defined a variable for a set of libraries that i want to link with some executables.</div>
<div> </div>
<div>But with one executble i dont want to use one of the library from the set of libraries.</div>
<div> </div>
<div>Can i unlink that particular library for this executable since iam using a variable for all those libraries.</div>
<div> </div>
<div>Eg:  Folder main Cmakelist</div>
<div>set( var</div>
<div>      path/l1.so</div>
<div>path/l1.so</div>
<div>path/l2.so</div>
<div>path/l3.so</div>
<div>path/l4.so</div>
<div>path/l5.so</div>
<div>path/l6.so</div>
<div>path/l7.so</div>
<div>path/l8.so</div>
<div>path/l9.so)</div></blockquote><div><br>Why not just do<br> <br><div>set( some</div>
<div>      path/l1.so</div>
<div>path/l1.so</div>
<div>path/l2.so</div>
<div>path/l3.so</div>
<div>path/l4.so</div>
<div>path/l5.so</div>
<div>path/l6.so</div>
<div>path/l7.so</div>

<div>path/l8.so)<br>set( all ${some} path/l9.so)</div>
<br><div>add_executable(a1 a1.C)</div>
<div>target_link_libraries(a1 ${all})</div>
<div> </div><div>add_executable(a2 a2.C)</div>target_link_libraries(a2 ${some})<br></div></div><br>-- <br>Philip Lowman<br>