Created
May 10, 2014 21:18
-
-
Save AdoPi/1a7bda63f6f0018f35af to your computer and use it in GitHub Desktop.
compile a qt application on mac osx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd dir_project | |
#write your code after that: | |
qmake -project | |
#create the makefile and compile the code | |
qmake -makefile | |
make | |
#create a dmg which contains your gorgeous app! | |
macdeployqt yourapp.app -dmg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment