compiling C# & clr C++?
-
wrote on 6 Sept 2019, 05:49 last edited by
In VS, i can have a single solution that includes:
- a C# proj which calls all manner of .NET assemblies (which produces a DLL i can call from a CLR project)
- a CLR project which calls into the C# dll (which then produces a DLL i can use from plain C++)
- a C++ project that calls into the CLR dll
is it possible to do this all from within a Qt .pro file? or must i do steps 1 and 2 outside of Qt ?
-
wrote on 6 Sept 2019, 18:10 last edited by davecotter 9 Jul 2019, 18:50
Apparently the answer is: No, there is no "out of the box" method (with no special setup, using qmake)
easiest is to just do step 1 and 2 outside of Qt.
-
wrote on 6 Sept 2019, 09:18 last edited by VRonin 9 Jun 2019, 09:19
2 and 3 are possible with qmake (i.e. .pro files) but not step 1. all 3 steps are possible with CMake. I doubt, however, that QtCreator will be able to manage a CMake C# project but you are welcome to try
-
wrote on 6 Sept 2019, 16:41 last edited by
i suppose there's little chance that Qt Creator will ever support C# ?
-
i suppose there's little chance that Qt Creator will ever support C# ?
@davecotter Creator has Language Server Support since few versions, so at least editing and Code Completion should be possible. So all you need would be a build system that supports these languages.
Regards
-
wrote on 6 Sept 2019, 18:10 last edited by davecotter 9 Jul 2019, 18:50
Apparently the answer is: No, there is no "out of the box" method (with no special setup, using qmake)
easiest is to just do step 1 and 2 outside of Qt.
1/5