aboutsummaryrefslogtreecommitdiff
path: root/desktop-editor/desktop-editor.pro
diff options
context:
space:
mode:
authorwilliam os4y <william.os4y@gmail.com>2015-03-05 21:17:07 +0100
committerwilliam <william.os4y@gmail.com>2015-03-13 20:51:55 +0100
commit3f8520006b5634cdea0c29953839bff3d7169fd9 (patch)
treeabd136d1464cf9ef3cc28f0bab68134aa741c1d6 /desktop-editor/desktop-editor.pro
parentfix issue #55: inform user whan return code is not null (diff)
downloadlumina-3f8520006b5634cdea0c29953839bff3d7169fd9.tar.gz
lumina-3f8520006b5634cdea0c29953839bff3d7169fd9.tar.bz2
lumina-3f8520006b5634cdea0c29953839bff3d7169fd9.zip
simple editor for .desktop files
Diffstat (limited to 'desktop-editor/desktop-editor.pro')
-rw-r--r--desktop-editor/desktop-editor.pro32
1 files changed, 32 insertions, 0 deletions
diff --git a/desktop-editor/desktop-editor.pro b/desktop-editor/desktop-editor.pro
new file mode 100644
index 00000000..dc3eadf2
--- /dev/null
+++ b/desktop-editor/desktop-editor.pro
@@ -0,0 +1,32 @@
+#-------------------------------------------------
+#
+# Project created by QtCreator 2015-02-24T18:52:15
+#
+#-------------------------------------------------
+
+QT += core gui
+
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+
+TARGET = desktop-editor
+TEMPLATE = app
+
+isEmpty(PREFIX) {
+ PREFIX = /usr/local
+}
+
+isEmpty(LIBPREFIX) {
+ LIBPREFIX = $$PREFIX/lib
+}
+
+
+SOURCES += main.cpp\
+ dialog.cpp
+
+HEADERS += dialog.h
+
+FORMS += dialog.ui
+
+INCLUDEPATH += $$PREFIX/include
+
+LIBS += -L$$LIBPREFIX -lLuminaUtils
bgstack15