aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-25 12:11:53 -0400
committerKen Moore <ken@ixsystems.com>2017-10-25 12:13:40 -0400
commit50cda0d1b7c6061cccb89389f44f9173026a678b (patch)
treecb70e562c6265d4ece4b0db0fee7732ff709ded7 /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri
parentMerge branch 'master' of http://github.com/trueos/lumina (diff)
downloadlumina-50cda0d1b7c6061cccb89389f44f9173026a678b.tar.gz
lumina-50cda0d1b7c6061cccb89389f44f9173026a678b.tar.bz2
lumina-50cda0d1b7c6061cccb89389f44f9173026a678b.zip
Re-arrange the 2.0 desktop sources (QML + associated C++ files).
Also another checkpoint commit with some of the QML desktop stuff (have a working context menu, wallpapers not working yet though)
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri7
1 files changed, 7 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri
new file mode 100644
index 00000000..99905253
--- /dev/null
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/src-qml.pri
@@ -0,0 +1,7 @@
+#Show the QML files to lupdate for translation purposes - not for the actual build
+lupdate_only{
+ SOURCES *= $${PWD}/RootDesktop.qml \
+ $${PWD}/ContextMenu.qml
+}
+
+RESOURCES *= $${PWD}/src-qml.qrc
bgstack15