summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2007-09-02 22:11:46 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2007-09-02 22:11:46 +0000
commit09d66ac4567936ff2c797d7ea0e7f61ad43264fc (patch)
treec122e3f0b7d400303dcca26381a8d3e4b212343e
parentad4b8868413a1a9e133dfe651f9074f35c1d7c48 (diff)
downloadrockbox-09d66ac4567936ff2c797d7ea0e7f61ad43264fc.tar.gz
rockbox-09d66ac4567936ff2c797d7ea0e7f61ad43264fc.zip
For some strange reason my last project file adjusting didn't seem to work correctly. Restucture a bit and rename debug configuration to "dbg" seems to help.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14586 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/rbutilqt/rbutilqt.pro16
1 files changed, 8 insertions, 8 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro
index 813299e75e..3c433dd4e8 100644
--- a/rbutil/rbutilqt/rbutilqt.pro
+++ b/rbutil/rbutilqt/rbutilqt.pro
@@ -75,15 +75,15 @@ HEADERS += rbutilqt.h \
75INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher 75INCLUDEPATH = . irivertools zip zlib ../ipodpatcher ../sansapatcher
76 76
77TEMPLATE = app 77TEMPLATE = app
78CONFIG += thread \ 78dbg {
79 qt 79 CONFIG += debug thread qt warn_on
80!debug { 80 DEFINES -= QT_NO_DEBUG_OUTPUT
81 CONFIG += release 81 message("debug")
82 DEFINES += QT_NO_DEBUG_OUTPUT
83} 82}
84debug { 83!dbg {
85 CONFIG += debug \ 84 CONFIG += release thread qt
86 warn_on 85 DEFINES += QT_NO_DEBUG_OUTPUT
86 message("release")
87} 87}
88 88
89TARGET = rbutilqt 89TARGET = rbutilqt