tools/runonphone/runonphone.pro
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
child 37 758a864f9613
permissions -rw-r--r--
Catchup to latest Symbian^4

TEMPLATE = app

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

include(symbianutils/symbianutils.pri)

SOURCES += main.cpp \
    trksignalhandler.cpp

HEADERS += trksignalhandler.h \
    serenum.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
}