Kacper
Kacper

Reputation: 268

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?

Upvotes: 5

Views: 586

Answers (2)

kaliatech
kaliatech

Reputation: 17867

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 .

Upvotes: 4

James
James

Reputation: 9278

yes, the QT runtime...............................

Upvotes: 0

Related Questions