I've managed to generate solution files for a C# WPF solution using this answer to the Generate C# project using CMake question.
But as soon as I created my own file, I noticed that the generated namespace was blank, so I went to properties of the project and confirmed that the default namespace is blank:
I'd like to set default namespace to the name of the project, how do I do it?
I checked out the documentation for CSharpUtilities, and googled it, and the only thing that I found related to the problem is this: VS_GLOBAL_ROOTNAMESPACE. But I don't know what to do with it. Is it a function? Is it a variable? Where do I put it then?