diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-20 16:13:49 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-20 16:15:33 +0200 |
commit | 36c16cd28e20b362a6185ce52525c98fc187ecf3 (patch) | |
tree | cfe36d3ca54a3ab7a95fd472b485d224f65225e6 /gui/mainwindow.cc | |
parent | e14b8bac66bf9a65ddd709fba53aac017691f0c8 (diff) | |
download | nextpnr-36c16cd28e20b362a6185ce52525c98fc187ecf3.tar.gz nextpnr-36c16cd28e20b362a6185ce52525c98fc187ecf3.tar.bz2 nextpnr-36c16cd28e20b362a6185ce52525c98fc187ecf3.zip |
Cleanup of cmake files for easier development
Diffstat (limited to 'gui/mainwindow.cc')
-rw-r--r-- | gui/mainwindow.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/mainwindow.cc b/gui/mainwindow.cc index 087c54ba..91232390 100644 --- a/gui/mainwindow.cc +++ b/gui/mainwindow.cc @@ -25,6 +25,8 @@ MainWindow::MainWindow(Context *_ctx, QWidget *parent)
: QMainWindow(parent), ctx(_ctx)
{
+ Q_INIT_RESOURCE(nextpnr);
+
log_files.clear();
log_streams.clear();
log_write_function = [this](std::string text) { info->info(text); };
|