38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
#macx-g++ (different from g++.conf)
|
|
|
|
#
|
|
# qmake configuration for macx-g++
|
|
#
|
|
# Mac OS X + command-line compiler
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
TARGET_PLATFORM = macx
|
|
TEMPLATE = app
|
|
CONFIG += qt warn_on release app_bundle incremental global_init_link_order lib_version_first plugin_no_soname link_prl
|
|
QT += core gui
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
include(../common/mac.conf)
|
|
include(../common/gcc-base-macx.conf)
|
|
include(../common/g++-macx.conf)
|
|
load(qt_config)
|