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
|
# Private library used by unittests
TEMPLATE = lib
CONFIG += staticlib
TARGET = testtools
CONFIG(debug, debug|release):!unix:TARGET = $${TARGET}d
QT -= gui
QT += network
# for QDomDocument in httpserver_p.cpp
QT += xml
# Workaround for visual studio integration
DESTDIR = $${TOP_BUILD_DIR}/lib
win32:DLLDESTDIR = $${TOP_BUILD_DIR}/bin
include($${TOP_SOURCE_DIR}/variables.pri)
# To link to KDSoap
include($${TOP_SOURCE_DIR}/examples/examples.pri)
SOURCES = httpserver_p.cpp
HEADERS = httpserver_p.h
RESOURCES += testtools.qrc
|