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 "blah blah"</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 "blah blah" into two items: "blah;blah", so I need something different.<br><br>Thanks,<br>James<br>