GUI milestone 0
This commit is contained in:
parent
286077af69
commit
4fc36822ba
4 changed files with 395 additions and 7 deletions
15
gui/main.cpp
Normal file
15
gui/main.cpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include <QApplication>
|
||||
#include <QMainWindow>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
QApplication app(argc, argv);
|
||||
QCoreApplication::setApplicationName("Warppipe");
|
||||
QCoreApplication::setApplicationVersion("0.1.0");
|
||||
|
||||
QMainWindow window;
|
||||
window.setWindowTitle("Warppipe — Audio Router");
|
||||
window.resize(1280, 720);
|
||||
window.show();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue