mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
* crash: A crash occurred in C:\jenkins\workspace\swift_wip_fsd_and_afv_client\build\out\release\bin\testcontext.exe. * ASSERT in const QList<QAudioDeviceInfo> allQtDevices2 = QAudioDeviceInfo::availableDevices(QAudio::AudioInput) * figured out it fails in a Qt console app, runs in a widget app * see https://discordapp.com/channels/539048679160676382/623947987822837779/631939335255752704
29 lines
460 B
Prolog
29 lines
460 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus network testlib multimedia gui
|
|
|
|
TARGET = testcontext
|
|
CONFIG -= app_bundle
|
|
CONFIG += blackconfig
|
|
CONFIG += blackmisc
|
|
CONFIG += blackcore
|
|
CONFIG += testcase
|
|
CONFIG += no_testcase_installs
|
|
|
|
TEMPLATE = app
|
|
|
|
DEPENDPATH += \
|
|
. \
|
|
$$SourceRoot/src \
|
|
$$SourceRoot/tests \
|
|
|
|
INCLUDEPATH += \
|
|
$$SourceRoot/src \
|
|
$$SourceRoot/tests \
|
|
|
|
SOURCES += testcontext.cpp
|
|
|
|
DESTDIR = $$DestRoot/bin
|
|
|
|
load(common_post)
|