2009-05-06 16:18:05 +02:00
|
|
|
# This is a compile check for the dumpers only. Don't install the library!
|
|
|
|
|
|
2009-05-08 11:08:29 +02:00
|
|
|
include(../../qtcreatorlibrary.pri)
|
2009-03-11 15:44:53 +01:00
|
|
|
|
|
|
|
|
TEMPLATE = lib
|
2009-04-07 16:39:17 +02:00
|
|
|
TARGET = DebuggingHelper
|
2009-05-06 16:18:05 +02:00
|
|
|
DESTDIR = $$IDE_LIBRARY_PATH # /tmp would be better in some respect ...
|
2009-03-11 15:44:53 +01:00
|
|
|
|
2009-04-17 16:51:49 +02:00
|
|
|
linux-* {
|
|
|
|
|
CONFIG -= release
|
|
|
|
|
CONFIG += debug
|
2009-04-20 15:46:31 +02:00
|
|
|
# The following line works around a linker issue with gcc 4.1.2
|
|
|
|
|
QMAKE_CXXFLAGS *= -O2
|
2009-04-17 16:51:49 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 13:22:58 +02:00
|
|
|
true {
|
|
|
|
|
QT = core
|
|
|
|
|
} else {
|
|
|
|
|
DEFINES += USE_QT_GUI=1
|
|
|
|
|
QT = core gui
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-28 18:00:38 +02:00
|
|
|
SOURCES += ../../../share/qtcreator/dumper/dumper.cpp
|
2009-03-11 15:44:53 +01:00
|
|
|
|