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

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
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:
[[Category:Tools::qmake]]


If you want to create make files per default, you can tell qmake by executing the following commands
If you call qmake from the prebuilt binaries of Qt, it produces Xcode project files (xxx.xcodeproj) instead of makefiles. You can create regular makefiles with these commands:


$QTDIR is the directory of your Qt installation (e.g. /usr/local/Trolltech/Qt-4.7.0).
<code>
rm -rf hello.xcodeproj
rm Info.plist
 
qmake -spec macx-g++
</code>


===Categories:===
If you want to create makefiles by default, you can tell qmake by executing the following commands:


* [[:Category:Tools|Tools]]
<code>
** [[:Category:Tools::qmake|qmake]]
cd $QTDIR/mkspecs
rm default
 
ln -s macx-g++ default
</code>

Latest revision as of 21:55, 14 June 2016


If you call qmake from the prebuilt binaries of Qt, it produces Xcode project files (xxx.xcodeproj) instead of makefiles. You can create regular makefiles with these commands:

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

If you want to create makefiles by default, you can tell qmake by executing the following commands:

cd $QTDIR/mkspecs
rm default

ln -s macx-g++ default