Generate Makefiles instead of Xcode projects on macOS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Jake Petroules moved page Generate Makefiles instead of Xcode projects on OS X to Generate Makefiles instead of Xcode projects on macOS) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Tools::qmake]] | |||
If you | 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> | |||
rm -rf hello.xcodeproj | |||
rm Info.plist | |||
qmake -spec macx-g++ | |||
</code> | |||
If you want to create makefiles by default, you can tell qmake by executing the following commands: | |||
<code> | |||
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