672b5b7ab6
Qt 5.0 beta requires changing the default to the 5.0 API, disabling the deprecated code. However, tests should test (and often do) the compatibility API too, so turn it back on. Task-number: QTBUG-25053 Change-Id: I8129c3ef3cb58541c95a32d083850d9e7f768927 Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
32 lines
562 B
Prolog
32 lines
562 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-08-11T11:51:09
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core network
|
|
|
|
# gui needed for QImage
|
|
# QT -= gui
|
|
|
|
TARGET = baselineserver
|
|
DESTDIR = ../bin
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
include(../shared/baselineprotocol.pri)
|
|
|
|
SOURCES += main.cpp \
|
|
baselineserver.cpp \
|
|
report.cpp
|
|
|
|
HEADERS += \
|
|
baselineserver.h \
|
|
report.h
|
|
|
|
RESOURCES += \
|
|
baselineserver.qrc
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|