Probably too late now and there isn'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 "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /INCREMENTAL:NO")<br>
<br>become shorter and easier to understand:<br><br> append(CMAKE_EXE_LINKER_FLAGS_RELEASE "/INCREMENTAL:NO")<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>