Al.Pertro
Al.Pertro

Reputation: 175

QT Creator C++ and run time lib

I'm planing for making setup file in qt creator for some proposes , any way my questions Dose the release exe required any run-time lib ?

Regareds

Upvotes: 1

Views: 56

Answers (1)

If you dynamic link your app, it will need some libraries (if you are developing on Windows, use Dependency Walker to identify all of them).

Also, take a look at the Qt modules your app need to compile: each of them corresponds to a library, which you will need to bundle with your app.

If you are static linking, I believe you may need a smaller number of libraries (those that are not bundled with Qt), but will still need.

Hope it helps.

Upvotes: 2

Related Questions