Reputation: 268
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
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