From fed87ed2e20632bc694c394cf44a30186f286cec Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 5 Aug 2014 11:14:26 +0200 Subject: Add autotest for QBS-559. This bug was fixed somewhat accidentally, so make sure it can't creep back in. Task-number: QBS-559 Change-Id: I3f85676f77cbc50b67f226810137860a7733fc6b Reviewed-by: Joerg Bornemann --- .../new-output-artifact-in-dependency/project.qbs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/auto/blackbox/testdata/new-output-artifact-in-dependency/project.qbs (limited to 'tests/auto/blackbox/testdata/new-output-artifact-in-dependency/project.qbs') diff --git a/tests/auto/blackbox/testdata/new-output-artifact-in-dependency/project.qbs b/tests/auto/blackbox/testdata/new-output-artifact-in-dependency/project.qbs new file mode 100644 index 000000000..1e324fd89 --- /dev/null +++ b/tests/auto/blackbox/testdata/new-output-artifact-in-dependency/project.qbs @@ -0,0 +1,15 @@ +import qbs + +Project { + DynamicLibrary { + //Depends { name: "cpp" } + name: "lib" + files: "lib.cpp" + } + + CppApplication { + name: "app" + files: "main.cpp" + Depends { name: "lib" } + } +} -- cgit v1.2.3