Generate Makefiles instead of Xcode projects on macOS: Difference between revisions
Jump to navigation
Jump to search
m (Jake Petroules moved page Generate Makefiles instead of XCode projects on Mac OS X to Generate Makefiles instead of Xcode projects on OS X: Proper capitalization and OS name) |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[Category:Tools::qmake]] | [[Category:Tools::qmake]] | ||
If you call qmake | 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: | ||
<code> | <code> | ||
Line 10: | Line 10: | ||
</code> | </code> | ||
If you want to create | If you want to create makefiles by default, you can tell qmake by executing the following commands: | ||
<code> | <code> |
Revision as of 10:43, 12 August 2015
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.xcodeporj
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