aboutsummaryrefslogtreecommitdiff
path: root/desktop-editor/desktop-editor.pro
diff options
context:
space:
mode:
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