Intial commit for files
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
|
||||
#include <QGuiApplication>
|
||||
#include <QQuickView>
|
||||
#include <QtQml>
|
||||
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
|
||||
QGuiApplication q_app (argc, argv);
|
||||
|
||||
// Using QQuickView
|
||||
QQuickView view;
|
||||
view.setSource(QUrl::fromLocalFile("qml/hw.qml"));
|
||||
view.show();
|
||||
|
||||
return q_app.exec ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user