You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since version 3.8, CMake supports C# projects. It would be nice to be able to organize complex hierarchies of solutions and projects via CMake instead of separate Visual Studio solutions.
The text was updated successfully, but these errors were encountered:
Cmake-converter works properly only with sln file. What are you proposing for example?
C# is not so crossplatform. What kind of C# projects do you want to build with cmake?
C# can be quite cross-platform, especially with .NET Core. Cmake-converter doesn't work only with .sln files. It works with .vcxproj and .vfproj. I'm proposing adding support for .csproj. Therefore, there would be three different project types supported, all inside the umbrella solution file.
Arguably, C# is more cross-platform than C++, since it compiles down to CIL, a binary suitable to run on any platform supported by .NET, whereas C++ generally compiles for a specific processor (llvm being an exception that works like CIL). In this sense, it's like Java, compiling down to a bytecode, one layer above machine code.
Since version 3.8, CMake supports C# projects. It would be nice to be able to organize complex hierarchies of solutions and projects via CMake instead of separate Visual Studio solutions.
The text was updated successfully, but these errors were encountered: