Can you create a setup.exe in qt to install your app on a client computer

前端 未结 6 2097
囚心锁ツ
囚心锁ツ 2020-12-23 12:50

I have created a desktop app and now I need to install in on a client\'s computer.

However, the client would like to have a wizard to install. Like Visual Studio set

6条回答
  •  情歌与酒
    2020-12-23 13:29

    If you only target Windows, you can use WiX (Windows Installer XML), which can be integrated into Visual Studio and MSBuild, so relatively easy to use. It's free and produces valid MSI files, which may be a requirement anyway.

    If you rather need a simple wizard setup, give InnoSetup a try.

提交回复
热议问题