aboutsummaryrefslogtreecommitdiff
path: root/qtapp.pro
diff options
context:
space:
mode:
authorMax Christian Pohle2015-11-18 04:12:48 +0100
committerMax Christian Pohle2015-11-18 04:12:48 +0100
commitde6cb045fd2b237e58320f0da7f3a365ca4d2ace (patch)
tree2bc3a13c3308aadaa0e92c556d587c60f8d718de /qtapp.pro
downloadqspacestatus-de6cb045fd2b237e58320f0da7f3a365ca4d2ace.tar.bz2
qspacestatus-de6cb045fd2b237e58320f0da7f3a365ca4d2ace.zip
downloads+parses json and displays systemtray icon
can be activated by a single click and shows the corresponding window.
Diffstat (limited to 'qtapp.pro')
-rw-r--r--qtapp.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/qtapp.pro b/qtapp.pro
new file mode 100644
index 0000000..db84b23
--- /dev/null
+++ b/qtapp.pro
@@ -0,0 +1,23 @@
1#-------------------------------------------------
2#
3# Project created by QtCreator 2015-11-17T21:16:22
4#
5#-------------------------------------------------
6
7QT += core gui network
8
9greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10
11TARGET = qtapp
12TEMPLATE = app
13
14
15SOURCES += main.cpp\
16 mainwindow.cpp
17
18HEADERS += mainwindow.h
19
20FORMS += mainwindow.ui
21
22DISTFILES += \
23 folder.png
..