26b260c0c1
This is a step towards making mac a shared scope for both Mac OS X and iOS, while macx is Mac OS X specific and ios is iOS specific. We'll then move iOS to not include macx.conf, once we make the change to not have iOS imply macx. Change-Id: Ic9ce4d597873aa3cf2c981598354733e07db644d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
22 lines
511 B
Plaintext
22 lines
511 B
Plaintext
#
|
|
# qmake configuration for 32-bit Clang on OS X
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
CONFIG += app_bundle incremental global_init_link_order lib_version_first plugin_no_soname
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
include(../common/macx.conf)
|
|
include(../common/gcc-base-macx.conf)
|
|
include(../common/clang.conf)
|
|
include(../common/clang-mac.conf)
|
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
|
|
|
|
QMAKE_CFLAGS += -arch i386
|
|
QMAKE_OBJECTIVE_CFLAGS += -arch i386
|
|
QMAKE_CXXFLAGS += -arch i386
|
|
QMAKE_LFLAGS += -arch i386
|
|
|
|
load(qt_config)
|