From 67e5c6e56be9cc0ad0ba9ef93c15d7a1b7b81206 Mon Sep 17 00:00:00 2001 From: staikos Date: Thu, 12 Jul 2007 03:04:45 +0000 Subject: [PATCH] Fix build in debug mode git-svn-id: https://svn.webkit.org/repository/webkit/trunk@24226 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- ChangeLog | 6 ++++++ WebKit.pri | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d065174b36ca..8e92944bdbfb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-12 George Staikos + + Fix build in debug mode. + + * WebKit.pri: + 2007-07-11 Holger Hans Peter Freyther Reviewed by Darin. diff --git a/WebKit.pri b/WebKit.pri index 8efe09929afe..11cc0ac9fd9c 100644 --- a/WebKit.pri +++ b/WebKit.pri @@ -1,7 +1,10 @@ # Include file to make it easy to include WebKit into Qt projects -isEmpty(OUTPUT_DIR):OUTPUT_DIR=$$PWD/WebKitBuild/Release +isEmpty(OUTPUT_DIR) { + CONFIG(release):OUTPUT_DIR=$$PWD/WebKitBuild/Release + CONFIG(debug):OUTPUT_DIR=$$PWD/WebKitBuild/Debug +} !gdk-port:CONFIG += qt-port qt-port:DEFINES += BUILDING_QT__=1 -- 2.36.0