summaryrefslogtreecommitdiff
path: root/tests/auto/debugger/protocol.pro
blob: 0119d258674f50d6f9e47ea465ac0c8344d67ecb (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
QT = core network

msvc: QTC_LIB_DEPENDS += utils
include(../qttest.pri)

DEBUGGERDIR = $$IDE_SOURCE_TREE/src/plugins/debugger
UTILSDIR = $$IDE_SOURCE_TREE/src/libs/utils

INCLUDEPATH += $$DEBUGGERDIR

SOURCES += \
    tst_protocol.cpp \
    $$DEBUGGERDIR/debuggerprotocol.cpp

HEADERS += \
    $$DEBUGGERDIR/debuggerprotocol.h

!msvc {
    SOURCES += \
        $$UTILSDIR/commandline.cpp \
        $$UTILSDIR/environment.cpp \
        $$UTILSDIR/fileutils.cpp \
        $$UTILSDIR/hostosinfo.cpp \
        $$UTILSDIR/namevaluedictionary.cpp \
        $$UTILSDIR/namevalueitem.cpp \
        $$UTILSDIR/qtcassert.cpp \
        $$UTILSDIR/qtcprocess.cpp \
        $$UTILSDIR/processhandle.cpp \
        $$UTILSDIR/savefile.cpp \

    HEADERS += \
        $$UTILSDIR/commandline.h \
        $$UTILSDIR/environment.h \
        $$UTILSDIR/fileutils.h \
        $$UTILSDIR/hostosinfo.h \
        $$UTILSDIR/namevaluedictionary.h \
        $$UTILSDIR/namevalueitem.h \
        $$UTILSDIR/qtcassert.h \
        $$UTILSDIR/qtcprocess.h \
        $$UTILSDIR/processhandle.h \
        $$UTILSDIR/savefile.h \

    macos: {
         HEADERS += $$UTILSDIR/fileutils_mac.h
         OBJECTIVE_SOURCES += $$UTILSDIR/fileutils_mac.mm
         LIBS += -framework Foundation
    }
}