736e4258a1
Allows us to dynamically generate the command line option for iOS later, and allows the user to override QMAKE_MACOSX_DEPLOYMENT_TARGET with the expected effect on the command line options. We unset PERL5LIB to ensure we get the system Perl libraries, since the Mac OS 10.6 CI machine seems to have a broken XML::Parser::Expat from macports/CPAN. Change-Id: I04430c7b1daf9452d72f9a04a6b7f8d0d6926884 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
22 lines
555 B
Plaintext
22 lines
555 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/mac.conf)
|
|
include(../common/gcc-base-macx.conf)
|
|
include(../common/clang.conf)
|
|
include(../common/clang-mac.conf)
|
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.7
|
|
|
|
QMAKE_CFLAGS += -arch i386
|
|
QMAKE_OBJECTIVE_CFLAGS += -arch i386 -stdlib=libc++
|
|
QMAKE_CXXFLAGS += -arch i386 -stdlib=libc++
|
|
QMAKE_LFLAGS += -arch i386 -stdlib=libc++
|
|
|
|
load(qt_config)
|