[Interest] wasm build of Qt 6.1.x ?

2021-06-07 Thread Nicholas Yue
Hi, I have built a wasm version for Qt 5.14.2 successfully and use that to build various test applications. I have been trying to cross compile to wasm_32 using emscripten for Qt 6.1.0. I have not been successful. Has anyone been able to do so ? Which version of emsdk was installed and activated

Re: [Interest] is it possible to add C# compiler?

2021-06-07 Thread Jason H
> Sent: Monday, June 07, 2021 at 7:48 AM > From: "David Skoland" > To: "David M. Cotter" > Cc: "Qt Interest" > Subject: Re: [Interest] is it possible to add C# compiler? > > Hi, > > Generally, no. I believe the reason you can compile Objective C on MacOS with > Qt is clang’s ability to link

Re: [Interest] is it possible to add C# compiler?

2021-06-07 Thread Thiago Macieira
On Saturday, 5 June 2021 13:07:09 CDT David M. Cotter wrote: > I just saw a message go by about someone adding another compiler to Qt > Creator? > > I know that Qt Creator can compile Objective C on mac. > > Made me wonder if it could be possible to add a compiler for C# on windows? > > Or is th

Re: [Interest] is it possible to add C# compiler?

2021-06-07 Thread Jérôme Godbout
You might need to do a C++/CLI wrapper around your c# library to make this work properly, there was some hackish way to include them that no more work with recent MSVC compiler. https://www.red-gate.com/simple-talk/development/dotnet-development/creating-ccli-wrapper/ That should allow you to s

Re: [Interest] is it possible to add C# compiler?

2021-06-07 Thread David Skoland
Hi, Generally, no. I believe the reason you can compile Objective C on MacOS with Qt is clang’s ability to link ObjC to C++ libraries (Qt). I haven’t heard of MSVC or any other compiler which can do the same with C#, which might already be tricky since C# isn’t typically compiled to native asse