Add Core as dependency for the qtcreator executable in the qbs build.

Rationale: "qbs run -p qtcreator" will otherwise fail on a clean
build dir, because Creator cannot run without the Core plugin.

Change-Id: I87c16847189fc09bcc4903e865b99b6ba472f1f0
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Christian Kandeler
2013-02-14 14:31:58 +01:00
committed by Joerg Bornemann
parent a45ccb0d4e
commit a9754611f6

View File

@@ -160,6 +160,7 @@ Project {
Depends { name: "Qt"; submodules: ["widgets", "network"] } Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "Utils" } Depends { name: "Utils" }
Depends { name: "ExtensionSystem" } Depends { name: "ExtensionSystem" }
Depends { name: "Core" }
files: [ files: [
"src/app/main.cpp", "src/app/main.cpp",