5

I developed one Qt application in Mac using Qt creator,Its working fine on my development machine.Then I copied the project output from my build directory to a new machine without Qt framework,but its not working in that machine, Do I need to install any frame work for running Qt application in Mac. How I can include qt framework in my application when deploying the project output?

Arun Kumar K S
  • 422
  • 5
  • 13
  • This question appears to be off-topic because it doesn't have SSCCE; doesn't demonstrate a minimal understanding of the problem being solved; and it's asking us to asking us to recommend or find a tool, library or favorite off-site resource. – Brigand Jul 28 '13 at 21:45
  • I solved it by using the "macdeployqt" tool http://blog.inventic.eu/2012/08/how-to-deploy-qt-application-on-macos-part-ii/ – Arun Kumar K S Oct 11 '13 at 06:22

3 Answers3

4

Make sure to have read Developing Qt Applications for Mac OS X.

Kuba hasn't forgotten Monica
  • 95,931
  • 16
  • 151
  • 313
FFox
  • 1,550
  • 2
  • 17
  • 26
0

See Qt for macOS - Deployment specifically, and Qt for macOS generally.

Kuba hasn't forgotten Monica
  • 95,931
  • 16
  • 151
  • 313
-2

The binary will be in your Debug or Release folder and it will be as .app

(.app extension may be hidden )

make sure you copy that and it should work fine as the binary has all its dependencies packed together

Rahul Reddy
  • 128
  • 10