user896036
user896036

Reputation: 509

How we can create installation file of any project in Qt?

I want to create installation file for my project so that i can install it where i want to run my program.

Upvotes: 1

Views: 211

Answers (4)

Sebastian Negraszus
Sebastian Negraszus

Reputation: 12205

For Windows, there is also Inno Setup.

Upvotes: 0

alexisdm
alexisdm

Reputation: 29896

You could use the installer-framework which is used for Qt SDK. It also includes an on-line updater.

Upvotes: 2

Frank Osterfeld
Frank Osterfeld

Reputation: 25165

Also try CPack. It comes with CMake and creates packages for all the desktop platforms Qt runs on.

Upvotes: 2

Morten Kristensen
Morten Kristensen

Reputation: 7623

Well there is NSIS for Windows and PackageMaker for Mac. Qt doesn't have installer primitives as such. Oh and there's the cross-platform BitRock.

Upvotes: 1

Related Questions