summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/dumper.pro
blob: 9c352f85d1247bea27fb1f01391de05dcc8b66c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This is a compile check for the dumpers only. Don't install the library!

include(../../qtcreatorlibrary.pri)

TEMPLATE = lib
TARGET = DebuggingHelper
DESTDIR = $$IDE_LIBRARY_PATH # /tmp would be better in some respect ...

linux-* {
CONFIG -= release
CONFIG += debug
# The following line works around a linker issue with gcc 4.1.2
QMAKE_CXXFLAGS *= -O2
}

true {
    QT = core
} else {
    DEFINES += USE_QT_GUI=1
    QT = core gui
}

SOURCES += ../../../share/qtcreator/dumper/dumper.cpp