blob: f6527fc8ec250f0991b4c3af8974f5b8e2ab9549 (
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 2015-03-19T13:14:53
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = GUI_SS2015
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
dlgpreferences.cpp \
interactioncanvas.cpp
HEADERS += mainwindow.h \
dlgpreferences.h \
interactioncanvas.h
FORMS += mainwindow.ui \
dlgpreferences.ui
|