mirror of
git://code.qt.io/qt/qt5.git
synced 2025-12-24 17:06:14 +08:00
WebKit still doesn't compile cleanly on Windows, so avoid it until we have something which works. Change-Id: I468dfbd01741705cd0bba3b035855d46acbb42e9 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
67 lines
2.2 KiB
Plaintext
67 lines
2.2 KiB
Plaintext
# Platform independent modules
|
|
|
|
# Dependencies separated with comma ','
|
|
# Dependencies with ':s' appended indicate soft dependencies, which
|
|
# means that they are a dependency if the module is present, if not
|
|
# they are ignored.
|
|
|
|
use Config;
|
|
%build_dependencies = (
|
|
"qlalr" => "qtbase",
|
|
"qt3d" => "qtbase,qtdeclarative",
|
|
"qtbase" => "",
|
|
"qtconnectivity" => "qtsystems",
|
|
"qtdeclarative" => "qtbase,qtxmlpatterns,qtjsbackend,qtsvg:s",
|
|
"qtdoc" => "qtbase,qtdeclarative",
|
|
"qtdocgallery" => "qtbase,qtscript,qtdeclarative,qtjsondb:s",
|
|
"qtfeedback" => "qtbase,qtmultimedia,qtdeclarative",
|
|
"qtgraphicaleffects" => "qtbase,qtdeclarative,qtsvg,qtxmlpatterns",
|
|
"qtimageformats" => "qtbase",
|
|
"qtjsbackend" => "qtbase",
|
|
"qtjsondb" => "qtbase,qtdeclarative,qtxmlpatterns",
|
|
"qtlocation" => "qtbase,qtdeclarative,qt3d,qtjsondb:s",
|
|
"qtmultimedia" => "qtbase,qtdeclarative",
|
|
"qtphonon" => "qtbase",
|
|
"qtpim" => "qtdeclarative,qtjsondb:s",
|
|
"qtqa" => "qtbase",
|
|
"qtquick1" => "qtbase,qtscript,qtxmlpatterns,qtsvg:s",
|
|
"qtscript" => "qtbase",
|
|
"qtsensors" => "qtbase,qtdeclarative",
|
|
"qtsvg" => "qtbase",
|
|
"qtsystems" => "qtbase,qtdeclarative,qtjsondb:s",
|
|
"qttools" => "qtbase,qtscript,qtdeclarative,qtquick1,qtwebkit:s",
|
|
"qttranslations" => "qttools",
|
|
"qtwebkit" => "qtbase,qtscript,qtdeclarative,qtquick1,qtlocation",
|
|
"qtwebkit-examples-and-demos" => "qtwebkit",
|
|
"qtxmlpatterns" => "qtbase",
|
|
);
|
|
|
|
@nondefault_modules = (
|
|
"qtwayland",
|
|
);
|
|
|
|
if ("$Config{osname}" =~ /mswin/i) {
|
|
%build_commands = (
|
|
"qtwebkit" => "perl Tools/Scripts/build-webkit --qt --no-netscape-plugin --no-webkit2",
|
|
);
|
|
push @nondefault_modules, ("qtwebkit", "qtwebkit-examples-and-demos");
|
|
} else {
|
|
%build_commands = (
|
|
"qtwebkit" => "perl Tools/Scripts/build-webkit --qt --release --no-netscape-plugin",
|
|
);
|
|
}
|
|
|
|
%install_commands = (
|
|
"qtwebkit" => "perl Tools/Scripts/build-webkit --qt --makeargs=\"install\"",
|
|
);
|
|
|
|
# Platform specific modules
|
|
|
|
if ("$Config{osname}" =~ /linux/i) {
|
|
$build_dependencies{"qtwayland"} = "qtbase,qtdeclarative";
|
|
}
|
|
|
|
if ("$Config{osname}" =~ /(ms|cyg)win/i) {
|
|
$build_dependencies{"qtactiveqt"} = "qtbase";
|
|
}
|