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