forked from qt-creator/qt-creator
Qt 5.3 is the minimum requirement these days. Remove all fallback code from sources and project files. Change-Id: If6188a471197acadda4d6baee71804ba1a8026c6 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
27 lines
500 B
Prolog
27 lines
500 B
Prolog
TEMPLATE = app
|
|
TARGET = tcpportsgatherer
|
|
|
|
QT = core widgets network
|
|
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
QTC_LIB_DEPENDS += utils
|
|
include(../../../auto/qttest.pri)
|
|
include(../../../../src/rpath.pri)
|
|
|
|
|
|
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
|