Trolltech's open source Qt binary installers for OS X by default create .xcodeproj files when qmake starts. I do not use Xcode for editing, so it hurts to open it to compile the project.
To compile your projects from Terminal.app, just set the QMAKESPEC environment variable in macx-g ++
If you just want to compile a specific project from the terminal, go to this directory and run
qmake -spec macx-g++
When you run qmake, this will create a Makefile that you can use by running make.
user47488 Dec 18 '08 at 17:43 2008-12-18 17:43
source share