Sammy Fatnassi
Sammy Fatnassi
I was thinking of not generating the solution at all, if the Visual Studio install directory is not found. But this is a behaviour change beyond this clang error, so...
That code snippet is doing exactly what I would like, thank you, I will try it tomorrow. I haven't tested to see what happen when requesting a Clang target, without...
The method `Util.IsVisualStudioInstalled` is not accessible and `IsVisualStudio2019Installed / IsVisualStudio2022Installed` are missing. I ended creating this method and calling it when adding my Targets in Project/Solution constructors. Works like a...
I managed to add support for hlsl files and included a link to it, hoping it can help other help people. https://github.com/sammyfreg/netImgui/blob/master/Build/netImgui.sharpmake.cs I have tweaked mine to generate a c...
I am using it with [NetImgui](https://github.com/sammyfreg/netImgui). It generates different Solutions/Projects per Visual Studio version, compile MSBuild and Clang compile targets. It also supports including and compiling hlsl shaders, but is...
There is not one at the moment, but I wrote the code to make multi-platform 'easy'. In fact, I believe someone was able to successfully achieve that, you can look...
My first question is, are the 2 contexts supposed to be visible at the same time? If both are active, it means that the same input is sent to both?...
Hmmm, that's pretty unusual, having 2 contexts processing the same inputs and rendering to the same output. How does it even handle having a valid window around same location of...
The depot https://github.com/sammyfreg/hello-world also generate a Linux solution using Sharpmake. I have been using this repo to test setuping my build system for a new project. It seems like its...
I just noticed that we can already specify the Linux toolset on Sharpmake 0.21, using `conf.Options.Add(Linux.Options.General.VcPlatformToolset.WSL2_1_0);` I was still on 0.18, and that option wasn't available at the time. Now...