aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro')
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro28
1 files changed, 28 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
new file mode 100644
index 00000000..5784c76c
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
@@ -0,0 +1,28 @@
+#===========================================
+# Copyright (c) 2017, q5sys (JT)
+# Available under the MIT license
+# See the LICENSE file for full details
+#===========================================
+include("$${PWD}/../../OS-detect.pri")
+
+QT += core gui
+
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+
+TARGET = lumina-xdg-entry
+TEMPLATE = app
+target.path = $${L_BINDIR}
+
+DEFINES += QT_DEPRECATED_WARNINGS
+
+SOURCES += main.cpp\
+ mainwindow.cpp
+
+HEADERS += mainwindow.h
+
+FORMS += mainwindow.ui
+
+desktop.files=lumina-xdg-entry.desktop
+desktop.path=$${L_SHAREDIR}/applications/
+
+INSTALLS += target desktop
bgstack15