From 2b71be72cb2fb5b6544646f89afcc21fd4219b6b Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 13 Feb 2013 14:42:10 +0100 Subject: [PATCH] utils.qbs: fix ProductModule ProductModule items in derived products override the ProductModule items in the base product. Change-Id: I3f325d1ae52b24c75b5aebe5b9cc0ceb7622dcc6 Reviewed-by: Christian Kandeler --- src/libs/utils/utils.qbs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libs/utils/utils.qbs b/src/libs/utils/utils.qbs index 208f8c16703..4c1a220c4cf 100644 --- a/src/libs/utils/utils.qbs +++ b/src/libs/utils/utils.qbs @@ -212,6 +212,10 @@ QtcLibrary { } ProductModule { + // ### [ remove, once qbs supports merging of ProductModule items in derived products + Depends { name: "cpp" } + cpp.includePaths: [ ".." ] + // ### ] Depends { name: "Qt"; submodules: ["concurrent", "widgets" ] } } }