aboutsummaryrefslogtreecommitdiffstats
path: root/examples/helloworld-complex/hello.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloworld-complex/hello.qbs')
-rw-r--r--examples/helloworld-complex/hello.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloworld-complex/hello.qbs b/examples/helloworld-complex/hello.qbs
index 725424e49..16e7eace0 100644
--- a/examples/helloworld-complex/hello.qbs
+++ b/examples/helloworld-complex/hello.qbs
@@ -74,7 +74,7 @@ Project {
cpp.defines: {
var defines = outer.concat([
'HAVE_MAIN_CPP',
- cpp.debugInformation ? '_DEBUG' : '_RELEASE'
+ cpp.debugInformation ? 'HAS_DEBUG' : 'HAS_RELEASE'
]);
if (project.hasSpecialFeature)
defines.push("HAS_SPECIAL_FEATURE");