forked from qt-creator/qt-creator
Conflicts: cmake/QtCreatorIDEBranding.cmake qbs/modules/qtc/qtc.qbs src/libs/solutions/tasking/tasktree.cpp src/plugins/coreplugin/imode.cpp src/plugins/cppeditor/cpphighlighter.cpp Change-Id: I5114911d18e377076c5c07b27d6ca918774f34b9
75 lines
2.0 KiB
QML
75 lines
2.0 KiB
QML
import qbs 1.0
|
|
|
|
Product {
|
|
name: "SharedContent"
|
|
Depends { name: "qtc" }
|
|
|
|
Group {
|
|
name: "Unconditional"
|
|
qbs.install: true
|
|
qbs.installDir: qtc.ide_data_path
|
|
qbs.installSourceBase: "qtcreator"
|
|
prefix: "qtcreator/"
|
|
files: [
|
|
"android/**/*",
|
|
"cplusplus/**/*",
|
|
"debugger/**/*",
|
|
"debugger-with-python2/**/*",
|
|
"designer/**/*",
|
|
"glsl/**/*",
|
|
"jsonschemas/**/*",
|
|
"lua-lupdate/**/*",
|
|
"lua-plugins/**/*",
|
|
"modeleditor/**/*",
|
|
"qml/**/*",
|
|
"qmldesigner/**/*",
|
|
"qmlicons/**/*",
|
|
"qml-type-descriptions/**/*",
|
|
"schemes/**/*",
|
|
"scripts/**/*",
|
|
"snippets/**/*",
|
|
"styles/**/*",
|
|
"templates/**/*",
|
|
"themes/**/*",
|
|
"welcomescreen/**/*"
|
|
]
|
|
excludeFiles: [
|
|
"qml-type-descriptions/qbs-bundle.json",
|
|
"qml-type-descriptions/qbs.qmltypes",
|
|
"debugger/**/__pycache__/*",
|
|
"debugger-with-python2/**/__pycache__/*",
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "3rdparty"
|
|
qbs.install: true
|
|
qbs.installDir: qtc.ide_data_path
|
|
qbs.installSourceBase: project.ide_source_tree + "/src/share/3rdparty"
|
|
prefix: project.ide_source_tree + "/src/share/3rdparty/"
|
|
files: [
|
|
"fonts/**/*",
|
|
"package-manager/**/*",
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Conditional"
|
|
qbs.install: true
|
|
qbs.installDir: qtc.ide_data_path + "/externaltools"
|
|
prefix: project.ide_source_tree + "/src/share/qtcreator/externaltools/"
|
|
files: {
|
|
var list = [
|
|
"qml.xml",
|
|
]
|
|
if (qbs.targetOS.contains("windows"))
|
|
list.push("notepad_win.xml");
|
|
else if (qbs.targetOS.contains("macos"))
|
|
list.push("vi_mac.xml");
|
|
else
|
|
list.push("vi.xml");
|
|
return list;
|
|
}
|
|
}
|
|
}
|