diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs index a7fff4132ef..7a6a2a9de87 100644 --- a/qbs/modules/qtc/qtc.qbs +++ b/qbs/modules/qtc/qtc.qbs @@ -74,11 +74,6 @@ Module { property bool preferSystemSyntaxHighlighting: true - property bool make_dev_package: false - - // Will be replaced when creating modules from products - property string export_data_base: project.ide_source_tree + "/share/qtcreator" - property bool testsEnabled: Environment.getEnv("TEST") || qbs.buildVariant === "debug" property stringList generalDefines: [ "QT_CREATOR", diff --git a/qtcreator.qbs b/qtcreator.qbs index c3aca8caca5..9b1593016f7 100644 --- a/qtcreator.qbs +++ b/qtcreator.qbs @@ -22,18 +22,6 @@ Project { "tests/tests.qbs" ] - Product { - name: "qbs_imports_modules" - Depends { name: "qtc" } - Group { - prefix: "qbs/" - files: ["**/*"] - qbs.install: qtc.make_dev_package - qbs.installDir: qtc.ide_qbs_resources_path - qbs.installSourceBase: "qbs" - } - } - Product { name: "qmake project files" files: { diff --git a/src/shared/pch_files.qbs b/src/shared/pch_files.qbs deleted file mode 100644 index 237f8456db8..00000000000 --- a/src/shared/pch_files.qbs +++ /dev/null @@ -1,16 +0,0 @@ -import qbs -import qbs.FileInfo - -Product { - name: "precompiled headers" - condition: qtc.make_dev_package - Depends { name: "qtc" } - Group { - files: [ - "qtcreator_pch.h", - "qtcreator_gui_pch.h", - ] - qbs.install: true - qbs.installDir: qtc.ide_shared_sources_path - } -} diff --git a/src/src.qbs b/src/src.qbs index 3d39fb7fcd6..fb7532b03c9 100644 --- a/src/src.qbs +++ b/src/src.qbs @@ -14,7 +14,6 @@ Project { "tools/tools.qbs", project.sharedSourcesDir + "/json", project.sharedSourcesDir + "/proparser", - project.sharedSourcesDir + "/pch_files.qbs", ] property bool qbsSubModuleExists: File.exists(qbsProject.qbsBaseDir + "/qbs.qbs")