Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebKit.pri
blobd7abc54533c836a64dca75bb26fcde8d148bc349
1 # Include file to make it easy to include WebKit into Qt projects
4 isEmpty(OUTPUT_DIR) {
5     CONFIG(debug, debug|release) {
6         OUTPUT_DIR=$$PWD/WebKitBuild/Debug
7     } else { # Release
8         OUTPUT_DIR=$$PWD/WebKitBuild/Release
9     }
12 DEFINES += BUILDING_QT__=1
13 building-libs {
14     win32-msvc*|win32-icc: INCLUDEPATH += $$PWD/JavaScriptCore/os-win32
15 } else {
16     CONFIG(QTDIR_build) {
17         QT += webkit
18     } else {
19         QMAKE_LIBDIR = $$OUTPUT_DIR/lib $$QMAKE_LIBDIR
20         mac:!static:contains(QT_CONFIG, qt_framework):!CONFIG(webkit_no_framework) {
21             LIBS += -framework QtWebKit
22             QMAKE_FRAMEWORKPATH = $$OUTPUT_DIR/lib $$QMAKE_FRAMEWORKPATH
23         } else {
24             win32-*|wince* {
25                 LIBS += -lQtWebKit$${QT_MAJOR_VERSION}
26             } else {
27                 LIBS += -lQtWebKit
28                 symbian {
29                     TARGET.EPOCSTACKSIZE = 0x14000 // 80 kB
30                     TARGET.EPOCHEAPSIZE = 0x20000 0x2000000 // Min 128kB, Max 32MB
31                 }
32             }
33         }
34     }
35     DEPENDPATH += $$PWD/WebKit/qt/Api
38 !mac:!unix|symbian {
39     DEFINES += USE_SYSTEM_MALLOC
42 CONFIG(release, debug|release) {
43     DEFINES += NDEBUG
46 BASE_DIR = $$PWD
47 INCLUDEPATH += $$PWD/WebKit/qt/Api
49 CONFIG -= warn_on
50 *-g++*:QMAKE_CXXFLAGS += -Wall -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
52 # Enable GNU compiler extensions to the ARM compiler for all Qt ports using RVCT
53 symbian|*-armcc {
54     RVCT_COMMON_CFLAGS = --gnu --diag_suppress 68,111,177,368,830,1293
55     RVCT_COMMON_CXXFLAGS = $$RVCT_COMMON_CFLAGS --no_parse_templates
56     DEFINES *= QT_NO_UITOOLS
59 *-armcc {
60     QMAKE_CFLAGS += $$RVCT_COMMON_CFLAGS
61     QMAKE_CXXFLAGS += $$RVCT_COMMON_CXXFLAGS
64 symbian {
65     QMAKE_CXXFLAGS.ARMCC += $$RVCT_COMMON_CXXFLAGS
68 contains(DEFINES, QT_NO_UITOOLS): CONFIG -= uitools
70 # Disable a few warnings on Windows. The warnings are also
71 # disabled in WebKitLibraries/win/tools/vsprops/common.vsprops
72 win32-msvc*: QMAKE_CXXFLAGS += -wd4291 -wd4344 -wd4396 -wd4503 -wd4800 -wd4819 -wd4996
75 # For builds inside Qt we interpret the output rule and the input of each extra compiler manually
76 # and add the resulting sources to the SOURCES variable, because the build inside Qt contains already
77 # all the generated files. We do not need to generate any extra compiler rules in that case.
79 # In addition this function adds a new target called 'generated_files' that allows manually calling
80 # all the extra compilers to generate all the necessary files for the build using 'make generated_files'
82 defineTest(addExtraCompiler) {
83     CONFIG(QTDIR_build) {
84         outputRule = $$eval($${1}.output)
85         outVariable = $$eval($${1}.variable_out)
86         !isEqual(outVariable,GENERATED_SOURCES):return(true)
88         input = $$eval($${1}.input)
89         input = $$eval($$input)
91         for(file,input) {
92             base = $$basename(file)
93             base ~= s/\..+//
94             newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base)
95             SOURCES += $$newfile
96         }
98         export(SOURCES)
99     } else {
100         QMAKE_EXTRA_COMPILERS += $$1
101         generated_files.depends += compiler_$${1}_make_all
102         export(QMAKE_EXTRA_COMPILERS)
103         export(generated_files.depends)
104     }
105     return(true)
108 defineTest(addExtraCompilerWithHeader) {
109     addExtraCompiler($$1)
111     eval(headerFile = $${2})
112     isEmpty(headerFile) {
113         eval($${1}_header.output = $$eval($${1}.output))
114         eval($${1}_header.output ~= s/\.cpp/.h/)
115         eval($${1}_header.output ~= s/\.c/.h/)
116     } else {
117         eval($${1}_header.output = $$headerFile)
118     }
120     eval($${1}_header.input = $$eval($${1}.input))
121     eval($${1}_header.commands = @echo -n '')
122     eval($${1}_header.depends = compiler_$${1}_make_all)
123     eval($${1}_header.variable_out = GENERATED_FILES)
125     export($${1}_header.output)
126     export($${1}_header.input)
127     export($${1}_header.commands)
128     export($${1}_header.depends)
129     export($${1}_header.variable_out)
131     !CONFIG(QTDIR_build): QMAKE_EXTRA_COMPILERS += $${1}_header
133     export(QMAKE_EXTRA_COMPILERS)
134     export(generated_files.depends)
135     export(SOURCES)
137     return(true)