Probably too late now and there isn&#39;t a bug filed so far as I know, but one thing I would love to see added to cmake is an append command so that lines like this:<br><br>    set(CMAKE_EXE_LINKER_FLAGS_RELEASE &quot;${CMAKE_EXE_LINKER_FLAGS_RELEASE} /INCREMENTAL:NO&quot;)<br>
<br>become shorter and easier to understand:<br><br>    append(CMAKE_EXE_LINKER_FLAGS_RELEASE &quot;/INCREMENTAL:NO&quot;)<br><br>The existing syntax for the set command is just ugly when appending.  I know you can define a macro or function to do this but I just feel that it should be supported out of the box as it would make CMakeLists.txt files more readable.<br>
<br>--<br>Glenn<br><br>