Generate Makefiles instead of Xcode projects on macOS: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Add "cleanup" tag)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:Tools::qmake]]
[[Category:Tools::qmake]]



Revision as of 15:38, 3 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

If you call qmake of the prebuilt binaries of Qt, it produces XCode project files (xxx.xcodeproj) instead of make files. You can create regular make files with this commands:

rm -rf hello.xcodeporj
rm Info.plist
 
qmake -spec macx-g++

If you want to create make files per default, you can tell qmake by executing the following commands

cd $QTDIR/mkspecs
rm default

ln -s macx-g++ default