aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-03-10 14:08:16 -0500
committerKen Moore <ken@ixsystems.com>2017-03-10 14:08:16 -0500
commit4ecd989c786ab86771a7338caf384ba5938db2ac (patch)
treeb82ffe48b020b3bcfd0cbbe9ec0c3c761a4dd620
parentFix up the context menu policies for the notepad desktop plugin. (diff)
parentadd the missing pro file (diff)
downloadlumina-4ecd989c786ab86771a7338caf384ba5938db2ac.tar.gz
lumina-4ecd989c786ab86771a7338caf384ba5938db2ac.tar.bz2
lumina-4ecd989c786ab86771a7338caf384ba5938db2ac.zip
Merge branch 'master' of github.com:trueos/lumina
-rw-r--r--src-qt5/desktop-utils/lumina-notify/lumina-notify.pro16
1 files changed, 16 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro b/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro
new file mode 100644
index 00000000..8b1317d7
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro
@@ -0,0 +1,16 @@
+#-------------------------------------------------
+# Created by q5sys
+# Released under MIT License 2017-03-08
+#-------------------------------------------------
+
+QT += core gui
+
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+
+TARGET = qnotify
+TEMPLATE = app
+
+DEFINES += QT_DEPRECATED_WARNINGS
+
+SOURCES += main.cpp
+
bgstack15