1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -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
+3
View File
@@ -22,6 +22,8 @@
#include <QDateTime>
#if QT_CONFIG(process)
CommandOutputDialog::CommandOutputDialog(Command& command, QWidget* parent) :
QDialog(parent),
ui(new Ui::CommandOutputDialog),
@@ -167,3 +169,4 @@ void CommandOutputDialog::on_processKill_toggled(bool checked)
}
}
#endif // QT_CONFIG(process)