mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-22 13:29:14 +01:00
14 lines
251 B
C++
14 lines
251 B
C++
|
#include <QApplication>
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
Q_INIT_RESOURCE( rc );
|
||
|
QApplication a(argc, argv);
|
||
|
QApplication::setWindowIcon( QIcon( ":/icon.png" ) );
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|