diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-06-22 15:54:05 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-06-22 15:54:05 +0100 |
commit | 15a7a76415cfb2e9fcbb534b324f829475036bb6 (patch) | |
tree | f5cd6d21aed83a341e786fa75a8b0053efb16656 /dummy/main.cc | |
parent | a68478598666d8fea0bef3c1814a96467bdb18ea (diff) | |
parent | e5bd4764b27c86fa804700b18bcac5cf18815314 (diff) | |
download | nextpnr-15a7a76415cfb2e9fcbb534b324f829475036bb6.tar.gz nextpnr-15a7a76415cfb2e9fcbb534b324f829475036bb6.tar.bz2 nextpnr-15a7a76415cfb2e9fcbb534b324f829475036bb6.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr into q3k/gl
Diffstat (limited to 'dummy/main.cc')
-rw-r--r-- | dummy/main.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dummy/main.cc b/dummy/main.cc index 110c5b6c..fa1259d4 100644 --- a/dummy/main.cc +++ b/dummy/main.cc @@ -1,7 +1,7 @@ /* * nextpnr -- Next Generation Place and Route * - * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at> + * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -22,6 +22,7 @@ #include <QApplication> #include <boost/filesystem/convenience.hpp> #include <boost/program_options.hpp> +#include "application.h" #include "log.h" #include "mainwindow.h" #include "nextpnr.h" @@ -107,7 +108,7 @@ int main(int argc, char *argv[]) } if (vm.count("gui")) { - QApplication a(argc, argv); + Application a(argc, argv); MainWindow w(&ctx); w.show(); |