diff --git a/src/qml.qrc b/src/qml.qrc
new file mode 100644
index 0000000000000000000000000000000000000000..69145a822f1f6a3a133b38da279dab003922da12
--- /dev/null
+++ b/src/qml.qrc
@@ -0,0 +1,5 @@
+<RCC>
+    <qresource prefix="/">
+        <file>qml/main.qml</file>
+    </qresource>
+</RCC>
diff --git a/src/qml/main.qml b/src/qml/main.qml
new file mode 100644
index 0000000000000000000000000000000000000000..c08f33d37866b5452ec845fc1e9d934a10b42b43
--- /dev/null
+++ b/src/qml/main.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+import QtQuick.Controls 1.1
+
+ApplicationWindow {
+
+    Component.onCompleted: {
+    }
+
+}