简体   繁体   中英

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM