1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-06 16:05:13 -04:00

Support compilation on Qt platforms that don't support processes (i.e. WebAssembly).

This commit is contained in:
srcejon
2024-11-06 12:11:49 +00:00
parent 2abe88368b
commit 8ed7972dce
8 changed files with 41 additions and 0 deletions
+4
View File
@@ -29,6 +29,8 @@
#include "commandsdialog.h"
#include "ui_commandsdialog.h"
#if QT_CONFIG(process)
CommandsDialog::CommandsDialog(QWidget* parent) :
QDialog(parent),
ui(new Ui::CommandsDialog),
@@ -309,3 +311,5 @@ QTreeWidgetItem* CommandsDialog::addCommandToTree(const Command* command)
//updatePresetControls();
return item;
}
#endif // QT_CONFIG(process)