Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Qt application require addional libraries from end-user? Like C# and .NET Framework?

I'm moving my game launcher & updater from C# to another language and framework because C# requires .NET Framework (a lot of players have problems with installation and stuff).

Does Qt require some additional libraries that user must install before he can run my app?

like image 644
Kacper Avatar asked Oct 11 '22 07:10

Kacper


1 Answers

Yes. Even with static linking of Qt, on Windows you will minimally need the msvc (or mingw) runtime. (Often the end user will already have it, but you can't rely on that.)

You can read about the specific dependencies for each platform here: http://doc.qt.io/qt-5/deployment.html#platform-specific-notes .

like image 105
kaliatech Avatar answered Oct 18 '22 07:10

kaliatech