Deploy Qt applications under Linux/X11
./configure -release -static -fast -no-qt3support -no-nis -no-cups -no-xrandr -no-xcursor -no-xinerama -prefix <$QTDIR>
./configure -release -static -fast -no-qt3support -no-nis -no-cups -no-xrandr -no-xcursor -no-xinerama -prefix <$QTDIR>
QTDIR=Qt directory
PATH=${QTDIR}/bin
QMAKESPEC=$QTDIR/mkspecs/linux-g++
Have a look at a detailed description of the Independent Qt Tutorial in chapter 4.
HowTo generate a static build of Qt under Mac OS X:
./configure -release -static -fast -no-qt3support -no-nis -no-cups -prefix <$QTDIR>
See ./configure –help for details.
MacForge is your source to find open source projects out on the net that work on the Mac, or are likely to work on the Mac.
Here you can find a HowTo that describes how to build Xcode project files with qmake.
qmake -project
qmake -spec macx-xcode
A german forum for Qt can be found here.
How to build Qt Appications using Xcode and qmake.
Under Linux qmake is used as followed:
qmake -project
qmake -spec linux-g++
I found some usefull Websites for Mac Development:
Here you can find an open source book for Cocoa development.
For doing openGL on Mac check this out.
Here you can find a tutorial that briefly describes you how to handle the GNU Project Debugger (GDB).
Here you can find the in deep manual.