summaryrefslogtreecommitdiff
path: root/tests/auto/api
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/api')
-rw-r--r--tests/auto/api/testdata/app-without-sources/project.qbs7
1 files changed, 6 insertions, 1 deletions
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" }