Generate Makefiles instead of Xcode projects on macOS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
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> | <code> | ||
rm -rf hello.xcodeporj | |||
rm Info.plist | |||
qmake -spec macx-g++ | |||
</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 | ||
<code> | <code> | ||
cd $QTDIR/mkspecs | |||
rm default | |||
ln -s macx-g++ default | ln -s macx-g++ default | ||
</code> |
Revision as of 10:12, 25 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:
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