1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
# Include file to make it easy to include WebKit into Qt projects
contains(QT_CONFIG, qpa)|contains(QT_CONFIG, embedded): CONFIG += embedded
# Detect that we are building as a standalone package by the presence of
# either the generated files directory or as part of the Qt package through
# QTDIR_build
CONFIG(QTDIR_build) {
CONFIG += standalone_package
# Make sure we compile both debug and release on mac when inside Qt.
# This line was extracted from qbase.pri instead of including the whole file
win32|mac:!macx-xcode:CONFIG += debug_and_release
# In case we are building a universal binary for Qt, building debug is not
# possible because we would exceed the maximum library size for 32bit.
mac:contains(QT_CONFIG, x86):contains(QT_CONFIG, x86_64) {
CONFIG(debug_and_release)|CONFIG(debug, debug|release) {
message(Building a universal binary with debug symbols is not possible. Building release!)
CONFIG -= debug_and_release debug
CONFIG += release
}
}
} else {
!CONFIG(release, debug|release) {
OBJECTS_DIR = obj/debug
} else { # Release
OBJECTS_DIR = obj/release
DEFINES *= NDEBUG
}
exists($$PWD/WebCore/generated):CONFIG += standalone_package
# Make sure that build_all follows the build_all config in WebCore
mac:contains(QT_CONFIG, qt_framework):!CONFIG(webkit_no_framework):!build_pass:CONFIG += build_all
}
CONFIG(standalone_package): DEFINES *= NDEBUG
CONFIG += depend_includepath
DEPENDPATH += $$OUT_PWD
CONFIG += nostrip
DEFINES += BUILDING_QT__=1
building-libs {
win32-msvc*|win32-icc: INCLUDEPATH += $$PWD/JavaScriptCore/os-win32
} else {
CONFIG(QTDIR_build) {
QT += webkit
} else {
QMAKE_LIBDIR = $$OUTPUT_DIR/lib $$QMAKE_LIBDIR
QTWEBKITLIBNAME = QtWebKit
mac:!static:contains(QT_CONFIG, qt_framework):!CONFIG(webkit_no_framework) {
LIBS += -framework $$QTWEBKITLIBNAME
QMAKE_FRAMEWORKPATH = $$OUTPUT_DIR/lib $$QMAKE_FRAMEWORKPATH
} else {
build_pass: win32-*|wince* {
!CONFIG(release, debug|release): QTWEBKITLIBNAME = $${QTWEBKITLIBNAME}d
QTWEBKITLIBNAME = $${QTWEBKITLIBNAME}$${QT_MAJOR_VERSION}
win32-g++*: LIBS += -l$$QTWEBKITLIBNAME
else: LIBS += $${QTWEBKITLIBNAME}.lib
} else {
LIBS += -lQtWebKit
symbian {
TARGET.EPOCSTACKSIZE = 0x14000 // 80 kB
# For EXEs only: set heap to usable value
TARGET.EPOCHEAPSIZE =
heapSizeRule = \
"$${LITERAL_HASH}ifdef WINSCW" \
"EPOCHEAPSIZE 0x40000 0x2000000 // Min 256kB, Max 32MB" \
"$${LITERAL_HASH}else" \
"EPOCHEAPSIZE 0x40000 0x10000000 // Min 256kB, Max 256MB" \
"$${LITERAL_HASH}endif"
MMP_RULES += heapSizeRule
}
}
}
}
DEPENDPATH += $$PWD/WebKit/qt/Api
}
CONFIG(release, debug|release) {
DEFINES += NDEBUG
}
equals(QT_ARCH, s390)|equals(QT_ARCH, arm)|equals(QT_ARCH, mips) {
message("s390, armel, armhf, mipsel workaround for QtWebkit: do not build with -g, but with -gstabs")
QMAKE_CXXFLAGS -= -g
QMAKE_CXXFLAGS += -gstabs
}
INCLUDEPATH += \
$$PWD \
$$PWD/../include \
$$OUTPUT_DIR/include/QtWebKit \
$$OUTPUT_DIR/include \
$$QT.script.includes
DEFINES += QT_ASCII_CAST_WARNINGS
webkit2:INCLUDEPATH *= $$OUTPUT_DIR/include/WebKit2
# Pick up 3rdparty libraries from INCLUDE/LIB just like with MSVC
win32-g++* {
TMPPATH = $$quote($$(INCLUDE))
QMAKE_INCDIR_POST += $$split(TMPPATH,";")
TMPPATH = $$quote($$(LIB))
QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
}
CONFIG -= warn_on
*-g++*:QMAKE_CXXFLAGS += -Wall -Wextra -Wreturn-type -fno-strict-aliasing -Wcast-align -Wchar-subscripts -Wformat-security -Wreturn-type -Wno-unused-parameter -Wno-sign-compare -Wno-switch -Wno-switch-enum -Wundef -Wmissing-noreturn -Winit-self
*-g++*:QMAKE_LFLAGS += -Wl,--as-needed
*-g++*:QMAKE_LFLAGS += -Wl,--version-script,$$PWD/symbols.filter
# Treat warnings as errors on x86/Linux/GCC
linux-g++*|glibc-*|hurd-* {
isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386): QMAKE_CXXFLAGS += -Werror
greaterThan(QT_GCC_MAJOR_VERSION, 3):greaterThan(QT_GCC_MINOR_VERSION, 5) {
if (!contains(QMAKE_CXXFLAGS, -std=c++0x) && !contains(QMAKE_CXXFLAGS, -std=gnu++0x)) {
# We need to deactivate those warnings because some names conflicts with upcoming c++0x types (e.g.nullptr).
QMAKE_CFLAGS_WARN_ON += -Wno-c++0x-compat
QMAKE_CXXFLAGS_WARN_ON += -Wno-c++0x-compat
QMAKE_CFLAGS += -Wno-c++0x-compat
QMAKE_CXXFLAGS += -Wno-c++0x-compat
}
}
}
symbian|*-armcc {
# Enable GNU compiler extensions to the ARM compiler for all Qt ports using RVCT
RVCT_COMMON_CFLAGS = --gnu --diag_suppress 68,111,177,368,830,1293
RVCT_COMMON_CXXFLAGS = $$RVCT_COMMON_CFLAGS --no_parse_templates
# Make debug symbols leaner in RVCT4.x. Ignored by compiler for release builds
QMAKE_CXXFLAGS.ARMCC_4_0 += --remove_unneeded_entities
# Match other compilers' (GCC, MSVC, WINSCW...) behavior regarding bitfield signedness.
# This flag is not needed for RVCT 2.x.
QMAKE_CXXFLAGS.ARMCC_4_0 += --signed_bitfields
}
*-armcc {
QMAKE_CFLAGS += $$RVCT_COMMON_CFLAGS
QMAKE_CXXFLAGS += $$RVCT_COMMON_CXXFLAGS
}
symbian {
QMAKE_CXXFLAGS.ARMCC += $$RVCT_COMMON_CXXFLAGS
}
valgrind {
contains(JAVASCRIPTCORE_JIT,yes): error("'JAVASCRIPTCORE_JIT=yes' not supported with valgrind")
QMAKE_CXXFLAGS += -g
QMAKE_LFLAGS += -g
DEFINES += USE_SYSTEM_MALLOC=1
DEFINES += ENABLE_JIT=0
JAVASCRIPTCORE_JIT = no
}
# Disable dependency to a specific version of a Qt package for non-production builds
symbian:!CONFIG(production):default_deployment.pkg_prerules -= pkg_depends_qt
##### Defaults for some mobile platforms
symbian|maemo5|maemo6 {
CONFIG += disable_uitools
CONFIG += enable_fast_mobile_scrolling
CONFIG += use_qt_mobile_theme
maemo6: CONFIG += include_webinspector
} else {
CONFIG += include_webinspector
}
*sh4* {
CONFIG += disable_uitools
}
####
disable_uitools: DEFINES *= QT_NO_UITOOLS
# Disable a few warnings on Windows. The warnings are also
# disabled in WebKitLibraries/win/tools/vsprops/common.vsprops
win32-msvc*|wince*: QMAKE_CXXFLAGS += -wd4291 -wd4344 -wd4396 -wd4503 -wd4800 -wd4819 -wd4996
win32-icc: QMAKE_CXXFLAGS += -wd873
CONFIG(qt_minimal) {
DEFINES *= QT_NO_ANIMATION
DEFINES *= QT_NO_BEARERMANAGEMENT
DEFINES *= QT_NO_CLIPBOARD
DEFINES *= QT_NO_COMBOBOX
DEFINES *= QT_NO_CONCURRENT
DEFINES *= QT_NO_CRASHHANDLER
DEFINES *= QT_NO_CURSOR
DEFINES *= QT_NO_DESKTOPSERVICES
DEFINES *= QT_NO_FILEDIALOG
DEFINES *= QT_NO_GRAPHICSEFFECT
DEFINES *= QT_NO_IM
DEFINES *= QT_NO_INPUTDIALOG
DEFINES *= QT_NO_LINEEDIT
DEFINES *= QT_NO_MESSAGEBOX
DEFINES *= QT_NO_OPENSSL
DEFINES *= QT_NO_PRINTER
DEFINES *= QT_NO_QUUID_STRING
DEFINES *= QT_NO_SHORTCUT
DEFINES *= QT_NO_STYLE_STYLESHEET
DEFINES *= QT_NO_SYSTEMTRAYICON
DEFINES *= QT_NO_TEMPORARYFILE
DEFINES *= QT_NO_TOOLTIP
DEFINES *= QT_NO_UITOOLS
DEFINES *= QT_NO_UNDOCOMMAND
DEFINES *= QT_NO_UNDOSTACK
DEFINES *= QT_NO_XRENDER
}
contains(DEFINES, QT_NO_UITOOLS): CONFIG -= uitools
|