This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Simon Stürz f5c4bd16ac Add Qt6 support
Add Qt6 debian packaging
2025-09-11 10:09:24 +02:00

63 lines
1.8 KiB
Prolog

TEMPLATE = lib
TARGET = nymea-tests
include(../../nymea.pri)
QT += testlib dbus network sql websockets
CONFIG += link_pkgconfig
PKGCONFIG += nymea-zigbee
greaterThan(QT_MAJOR_VERSION, 5) {
qtHaveModule(serialbus) {
message("Building with QtSerialBus support.")
QT *= serialbus
DEFINES += WITH_QTSERIALBUS
} else {
message("QtSerialBus package not found. Building without QtSerialBus support.")
}
# Separate module in Qt6
QT *= concurrent
} else {
packagesExist(Qt5SerialBus) {
message("Building with QtSerialBus support.")
PKGCONFIG += Qt5SerialBus
DEFINES += WITH_QTSERIALBUS
} else {
message("Qt5SerialBus package not found. Building without QtSerialBus support.")
}
}
INCLUDEPATH += $$top_srcdir/libnymea \
$$top_srcdir/libnymea-core
LIBS += -L$$top_builddir/libnymea/ -lnymea \
-L$$top_builddir/libnymea-core/ -lnymea-core \
-lssl -lcrypto -lnymea-remoteproxyclient
HEADERS += nymeatestbase.h
SOURCES += nymeatestbase.cpp
target.path = $$[QT_INSTALL_LIBS]
INSTALLS += target
# install header file with relative subdirectory
for(header, HEADERS) {
path = $$[QT_INSTALL_PREFIX]/include/nymea-tests/$${dirname(header)}
eval(headers_$${path}.files += $${header})
eval(headers_$${path}.path = $${path})
eval(INSTALLS *= headers_$${path})
}
# Create pkgconfig file
CONFIG += create_pc create_prl no_install_prl
QMAKE_PKGCONFIG_NAME = libnymea-tests
QMAKE_PKGCONFIG_DESCRIPTION = nymea-tests development library
QMAKE_PKGCONFIG_PREFIX = $$[QT_INSTALL_PREFIX]
QMAKE_PKGCONFIG_INCDIR = $$[QT_INSTALL_PREFIX]/include/nymea-tests/
QMAKE_PKGCONFIG_LIBDIR = $$target.path
QMAKE_PKGCONFIG_VERSION = $$NYMEA_VERSION_STRING
QMAKE_PKGCONFIG_FILE = nymea-tests
QMAKE_PKGCONFIG_DESTDIR = pkgconfig