From d6d2c8a9b1b8eb9f6e4b5887018f4ccf45769739 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Thu, 25 Sep 2014 06:00:52 -0400 Subject: Apply workaround to get appWithoutSources autotest passing again. Change-Id: I0d491ecb46f23a1eac8071a48f8f30005d229539 Reviewed-by: Christian Kandeler --- tests/auto/api/testdata/app-without-sources/project.qbs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tests/auto/api') diff --git a/tests/auto/api/testdata/app-without-sources/project.qbs b/tests/auto/api/testdata/app-without-sources/project.qbs index dca195e29..fd90f482d 100644 --- a/tests/auto/api/testdata/app-without-sources/project.qbs +++ b/tests/auto/api/testdata/app-without-sources/project.qbs @@ -25,7 +25,12 @@ Project { CppApplication { name: "appWithoutSources" type: ["application"] - cpp.entryPoint: "main" + + // HACK: cpp.entryPoint currently not working 100% with gcc + Properties { + condition: qbs.toolchain.contains("msvc") + cpp.entryPoint: "main" + } Depends { name: "a" } Depends { name: "b" } -- cgit v1.2.1