Files
qt-creator/tests/manual/utils/tcpportsgatherer/tcpportsgatherer.pro
Kai Koehne af205ab25d Add TcpPortsGatherer to utils
Can be used to check (non-intrusively) which TCP ports are still available.

Change-Id: I61300f6b7215cb2c0e4a3e6135de305cfd38b5a9
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Reviewed-by: hjk <qthjk@ovi.com>
2012-03-02 18:37:39 +01:00

28 lines
548 B
Prolog

TEMPLATE = app
TARGET = tcpportsgatherer
QT = core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += console
CONFIG -= app_bundle
include(../../../../qtcreator.pri)
include(../../../../src/rpath.pri)
INCLUDEPATH += ../../../../src/libs
UTILSDIR = ../../../../src/libs/utils
DEFINES += QTCREATOR_UTILS_STATIC_LIB
HEADERS += \
$${UTILSDIR}/portlist.h \
$${UTILSDIR}/tcpportsgatherer.h
SOURCES += \
$${UTILSDIR}/portlist.cpp \
$${UTILSDIR}/tcpportsgatherer.cpp
win32:LIBS += -liphlpapi -lWs2_32
SOURCES += main.cpp