[Qutecsound-devel] Building CsoundQt
Brought to you by:
mantaraya36
From: joachim h. <jh...@jo...> - 2021-06-02 19:36:55
|
hi tarmo, hi eduardo - i have just built csoundqt on a new debian 11 system and want to report the results. 1. BUILDING WITH QT 5.15 in general all fine, but CONFIG+=html_webengine does not work: Project ERROR: Unknown module(s) in QT: webenginewidgets is there any other html5 module for qt 5.15? 2. BUILDING WITH QT 6 this does not work at all. it gives a lot of build errors; i paste a small snippet below. is there any plan to translate the code to qt6? cheers - joachim build/ui/ui_configdialog.h: In member function ‘void Ui_ConfigDialog::setupUi(QDialog*)’: build/ui/ui_configdialog.h:1985:73: error: ‘qOverload’ was not declared in this scope; did you mean ‘QOverload’? 1985 | QObject::connect(okButton, &QPushButton::clicked, ConfigDialog, qOverload<>(&QDialog::accept)); | ^~~~~~~~~ | QOverload build/ui/ui_configdialog.h:1985:83: error: expected primary-expression before ‘>’ token 1985 | QObject::connect(okButton, &QPushButton::clicked, ConfigDialog, qOverload<>(&QDialog::accept)); | ^ build/ui/ui_configdialog.h:1986:87: error: expected primary-expression before ‘>’ token 1986 | QObject::connect(cancelButton, &QPushButton::clicked, ConfigDialog, qOverload<>(&QDialog::reject)); | ^ src/configdialog.cpp: In member function ‘void ConfigDialog::onRtModuleComboBoxChanged(int)’: src/configdialog.cpp:405:50: warning: unused parameter ‘index’ [-Wunused-parameter] 405 | void ConfigDialog::onRtModuleComboBoxChanged(int index) { | ~~~~^~~~~ make: *** [Makefile:18062: build/doubles/obj/configdialog.o] Error 1 |