blob: 6db3c44dcd2a67563f38adbf59f5ff0b293ae8c9 (
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
26
27
28
29
30
31
32
33
34
35
36
|
#-------------------------------------------------
#
# 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 \
languagedialog.cpp \
line.cpp
HEADERS += mainwindow.h \
dlgpreferences.h \
interactioncanvas.h \
languagedialog.h \
line.h
FORMS += mainwindow.ui \
dlgpreferences.ui \
languagedialog.ui
TRANSLATIONS += \
german.ts
RESOURCES += \
translations.qrc
|