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

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
[[Category:Tools::qmake]]
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:
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:
<code><br />rm -rf hello.xcodeporj<br />rm Info.plist<br /> <br />qmake -spec macx-g++<br /></code>


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


$QTDIR is the directory of your Qt installation (e.g. /usr/local/Trolltech/Qt-4.7.0).
<code><br />cd $QTDIR/mkspecs<br />rm default
 
===Categories:===


* [[:Category:Tools|Tools]]
ln -s macx-g++ default<br /></code>
** [[:Category:Tools::qmake|qmake]]

Revision as of 09:51, 24 February 2015


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:

<br />rm -rf hello.xcodeporj<br />rm Info.plist<br /> <br />qmake -spec macx-g++<br />

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

<br />cd $QTDIR/mkspecs<br />rm default

ln -s macx-g++ default<br />