Files in group section
What problem will this solve?
In VisualStudio its possible to add files to a folder not tied to specific project (see image below). Premake doesnt seem to have that feature.
What might be a solution? Add support for misc files in global folders
What other alternatives have you already considered? I thought of creating a project to store files (like header files) but its not really that great.
Alternative:
I don't believe adding files directly to the virtual file structure is necessarily the best solution. There is a path forward with fixing up part of the Utility exporter to make sure it properly supports include paths and language versions. This works well with the uses/usages API.
I don't believe adding files directly to the virtual file structure is necessarily the best solution. There is a path forward with fixing up part of the Utility exporter to make sure it properly supports include paths and language versions. This works well with the uses/usages API.
Not including it limits what you can do in premake. uses/usages API doesnt really do what I need as far as I see.
This feature would be of huge help especially with utility projects where intellisense can get broken very quickly
I thought of creating a project to store files (like header files) but its not really that great.
What is not good with that solution? Kind "None" or Kind "Utility" seems to do the job
What is not good with that solution?
Kind "None"orKind "Utility"seems to do the job
No, it doesnt. On the surface it sounds like a good idea but when tested in practice you can see the underlying flaws behind it.
It may work fine on non VS projects but in VS the intellisense gets messed up with this.
Due to how VS intellisense works, the Kind "None" project will fill up the output box with false errors due to mismatch in project configurations.
intellisense prefer Kind "Utility" indeed IIRC.
intellisense prefer
Kind "Utility"indeed IIRC.
Nope. Intellisense treats both kind types in the same way