summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/cdb/cdb.pri
blob: 348ce14e6e8be1868148d9d1f4be3bec66b4e2e5 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
include(cdbcore.pri)

!isEmpty(CDB_PATH) {

HEADERS += \
    $$PWD/cdbdebugengine.h \
    $$PWD/cdbdebugengine_p.h \
    $$PWD/cdbdebugeventcallback.h \
    $$PWD/cdbdebugoutput.h \
    $$PWD/cdbsymbolgroupcontext.h \
    $$PWD/cdbsymbolgroupcontext_tpl.h \
    $$PWD/cdbstacktracecontext.h \
    $$PWD/cdbbreakpoint.h \
    $$PWD/cdbmodules.h \
    $$PWD/cdbassembler.h \
    $$PWD/cdboptions.h \
    $$PWD/cdboptionspage.h \
    $$PWD/cdbdumperhelper.h \
    $$PWD/cdbsymbolpathlisteditor.h \
    $$PWD/cdbexceptionutils.h

SOURCES += \
    $$PWD/cdbdebugengine.cpp \
    $$PWD/cdbdebugeventcallback.cpp \
    $$PWD/cdbdebugoutput.cpp \
    $$PWD/cdbsymbolgroupcontext.cpp \
    $$PWD/cdbstacktracecontext.cpp \
    $$PWD/cdbbreakpoint.cpp \
    $$PWD/cdbmodules.cpp \
    $$PWD/cdbassembler.cpp \
    $$PWD/cdboptions.cpp \
    $$PWD/cdboptionspage.cpp \
    $$PWD/cdbdumperhelper.cpp \
    $$PWD/cdbsymbolpathlisteditor.cpp \
    $$PWD/cdbexceptionutils.cpp

FORMS += $$PWD/cdboptionspagewidget.ui
}


# Compile test on non-Windows platforms
isEmpty(CDB_PATH) {
false {
HEADERS += \
#    $$PWD/cdbdebugengine.h \
#    $$PWD/cdbdebugengine_p.h \
#    $$PWD/cdbdebugeventcallback.h \
#    $$PWD/cdbdebugoutput.h \
#    $$PWD/cdbsymbolgroupcontext.h \
#    $$PWD/cdbsymbolgroupcontext_tpl.h \
#    $$PWD/cdbstacktracecontext.h \
#    $$PWD/cdbbreakpoint.h \
#    $$PWD/cdbmodules.h \
#    $$PWD/cdbassembler.h \
#    $$PWD/cdboptions.h \
#    $$PWD/cdboptionspage.h \
#    $$PWD/cdbdumperhelper.h \
#    $$PWD/cdbsymbolpathlisteditor.h \
#    $$PWD/cdbexceptionutils.h

SOURCES += \
#    $$PWD/cdbdebugengine.cpp \
#    $$PWD/cdbdebugeventcallback.cpp \
    $$PWD/cdbdebugoutput.cpp \
#    $$PWD/cdbsymbolgroupcontext.cpp \
#    $$PWD/cdbstacktracecontext.cpp \
#    $$PWD/cdbbreakpoint.cpp \
#    $$PWD/cdbmodules.cpp \
#    $$PWD/cdbassembler.cpp \
#    $$PWD/cdboptions.cpp \
#    $$PWD/cdboptionspage.cpp \
#    $$PWD/cdbdumperhelper.cpp \
#    $$PWD/cdbsymbolpathlisteditor.cpp \
#    $$PWD/cdbexceptionutils.cpp

FORMS += $$PWD/cdboptionspagewidget.ui
}
}