From e2cdbbb184563bf41795bd1d23634e6d5d56092e Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 22 Jul 2010 09:05:44 +0000 Subject: [PATCH] Fix project file to support the new qtsinglecoreapplication.prf --- src/src.pro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/src.pro b/src/src.pro index b5deda2e9..223d3d7fe 100644 --- a/src/src.pro +++ b/src/src.pro @@ -348,7 +348,11 @@ contains(DEFINES, DISABLE_GUI) { contains(DEFINES, USE_SYSTEM_QTSINGLEAPPLICATION) { message("Using the system's qtsingleapplication library") - CONFIG += qtsingleapplication + contains(DEFINES, DISABLE_GUI) { + CONFIG += qtsinglecoreapplication + } else { + CONFIG += qtsingleapplication + } } else { message("Using the shipped qtsingleapplication library") contains(DEFINES, DISABLE_GUI) {