Skip to content
Snippets Groups Projects
Commit d6465142 authored by Joerg Bornemann's avatar Joerg Bornemann
Browse files

qbs files: build with Qt5


Help plugin and QmlDesigner have been disabled for Qt5.

Change-Id: I9345d0fd00f9a575333dc972cc7adbdf146cd6cb
Reviewed-by: default avatarAlessandro Portale <alessandro.portale@nokia.com>
parent 96a7fbe3
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ QtcLibrary {
}
Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ['widgets', 'network', 'script'] }
Depends { name: "Qt"; submodules: ['widgets', 'network', 'script', 'concurrent'] }
Depends { name: "Botan" }
Depends { name: "app_version_header" }
......@@ -253,5 +253,9 @@ QtcLibrary {
"unixutils.cpp"
]
}
ProductModule {
Depends { name: "Qt"; submodules: ["concurrent"] }
}
}
......@@ -4,7 +4,13 @@ import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "Core"
Depends { name: "qt"; submodules: ['core', 'widgets', 'xml', 'network', 'script', 'sql', 'help'] }
Depends {
name: "qt"
submodules: [
'core', 'widgets', 'xml', 'network',
'script', 'sql', 'help', 'printsupport'
]
}
Depends { name: "Utils" }
Depends { name: "ExtensionSystem" }
Depends { name: "Aggregation" }
......
......@@ -5,6 +5,8 @@ import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "Help"
condition: qtcore.versionMajor === 4
Depends { id: qtcore; name: "qt.core" }
Depends { name: "qt"; submodules: ['widgets', 'help', 'webkit'] }
Depends { name: "Core" }
Depends { name: "Find" }
......
......@@ -5,6 +5,8 @@ import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "QmlDesigner"
condition: qtcore.versionMajor === 4
Depends { id: qtcore; name: "qt.core" }
Depends { name: "qt"; submodules: ['widgets', 'quick1'] }
Depends { name: "Core" }
Depends { name: "QmlJS" }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment