blob: c3cfcc005a531fc575c79766df134b970a48ec96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#-------------------------------------------------
#
# Project created by QtCreator 2013-06-04T20:56:37
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = helloqt
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
target.path = /opt/helloqt
target.files = helloqt
INSTALLS += target
|