Basic project setup

This commit is contained in:
ItsDrike 2025-02-25 12:21:07 +01:00
parent 3ed9ccee2e
commit 54332b6384
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
11 changed files with 437 additions and 21 deletions

8
qml/Main.qml Normal file
View file

@ -0,0 +1,8 @@
import QtQuick
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
}

8
qml/qml.qrc Normal file
View file

@ -0,0 +1,8 @@
<!DOCTYPE RCC>
<RCC version="1.0">
<qresource>
<file>../qml/Main.qml</file>
</qresource>
</RCC>
<!-- vi: ft=xml
-->