aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-06-02 11:41:19 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-06-02 16:49:27 +0200
commit96d09509e46b2c15b646b81725bdc6ec18118283 (patch)
treed81cfad407ce97af280af65c6701668280cf7fe2 /tests/auto/blackbox
parent0d17c9617e1478951ea8e967937adb7d16a8e3b3 (diff)
introduce cpp.entryPoint
Set cpp.entryPoint to specify the entry point symbol for an executable or dynamic library. Task-number: QBS-602 Change-Id: I83e7c13b4ab7675a1cfa0cc8a2234cba0f850b3d Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
Diffstat (limited to 'tests/auto/blackbox')
-rw-r--r--tests/auto/blackbox/testdata/appWithoutSources/project.qbs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/appWithoutSources/project.qbs b/tests/auto/blackbox/testdata/appWithoutSources/project.qbs
index f59d3ad85..3e587bd5c 100644
--- a/tests/auto/blackbox/testdata/appWithoutSources/project.qbs
+++ b/tests/auto/blackbox/testdata/appWithoutSources/project.qbs
@@ -24,10 +24,7 @@ Project {
CppApplication {
name: "appWithoutSources"
- Properties {
- condition: qbs.toolchain.contains("msvc")
- cpp.linkerFlags: "/ENTRY:main"
- }
+ cpp.entryPoint: "main"
Depends { name: "a" }
Depends { name: "b" }