summaryrefslogtreecommitdiffstats
path: root/tools/runonphone/runonphone.pro
blob: 3d6a995d95e3f1804e11f6900b2eacd3e3e7f227 (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
TEMPLATE = app

QT -= gui
CONFIG += console static
CONFIG -= app_bundle

include(symbianutils/symbianutils.pri)

SOURCES += main.cpp \
    trksignalhandler.cpp \
    ossignalconverter.cpp \
    codasignalhandler.cpp \
    texttracehandler.cpp

HEADERS += trksignalhandler.h \
    serenum.h \
    ossignalconverter.h \
    ossignalconverter_p.h \
    codasignalhandler.h \
    texttracehandler.h

DEFINES += SYMBIANUTILS_INCLUDE_PRI

windows { 
    SOURCES += serenum_win.cpp 
    LIBS += -lsetupapi \
            -luuid \
            -ladvapi32
}
else:unix:!symbian {
    SOURCES += serenum_unix.cpp
    LIBS += -lusb
}
else {
    SOURCES += serenum_stub.cpp
}

target.path=$$[QT_INSTALL_BINS]
INSTALLS        += target