Is it possible to have flags with spaces in them defined in CMAKE_CXX_FLAGS?<br><br><span style="color: rgb(255, 0, 0);">CMAKE_CXX_FLAGS =  /DWIN32 /D_WINDOWS /W3 /Zm1000 /EHsc /GR &quot;blah blah&quot;</span><br><br>I need to be able to convert the CMAKE_CXX_FLAGS into a comma separated string, and spaces in a flag is thwarting all my efforts.<br>

<br>separate_arguments separates &quot;blah blah&quot; into two items: &quot;blah;blah&quot;, so I need something different.<br><br>Thanks,<br>James<br>