Hi David, <div><br></div><div>Unfortunately, even that syntax still removes the quotes in the generated project, but thanks for the heads up!</div><div><br></div><div>@Andreas: I&#39;m going to check your solution, thanks!</div>

<div><br></div><div>Best, </div><div><br clear="all"><font color="#333333">François Best</font><div><div><font color="#333333">Hardware &amp; Software Engineer</font></div><div><font color="#333333"><br></font></div><div>

<font color="#6666cc">Eiosis - <a href="http://www.eiosis.com/">http://www.eiosis.com/</a></font></div></div><br>
<br><br><div class="gmail_quote">2012/7/11 David Cole <span dir="ltr">&lt;<a href="mailto:david.cole@kitware.com" target="_blank">david.cole@kitware.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

The syntax in your original post is incorrect.<div class="im"><br><br>  set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG} /Test1:&quot;Test1&quot;)<br><br></div>should be:<div class="im"><br><br>  set(CMAKE_CXX_FLAGS_DEBUG &quot;${CMAKE_CXX_FLAGS_DEBUG} /Test1:\&quot;Test1\&quot;&quot;)<br>


<br></div>i.e., to CMake, the set call should look like two arguments here: the variable name and a double quoted string with any nested quotes escaped with a \ character<div><br></div><div>The C and CXX flags variables are all single string values with multiple flags separated by spaces. With your original syntax, all the spaces get turned into semi-colons because there are multiple (more than just 2) arguments to the set command.</div>


<div><br></div><div><br></div><div>HTH,</div><div>David</div><div><br></div>
<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></blockquote></div><br></div>