-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTP_LAB1_GraphEditor_BMS.pro
More file actions
48 lines (41 loc) · 1.1 KB
/
TP_LAB1_GraphEditor_BMS.pro
File metadata and controls
48 lines (41 loc) · 1.1 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
#-------------------------------------------------
#
# Project created by QtCreator 2013-09-21T00:46:20
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = TP_LAB1_GraphEditor_BMS
TEMPLATE = app
SOURCES += main.cpp\
editorwindow.cpp \
Figures/Figure.cpp \
renderscene.cpp \
Figures/Triangle.cpp \
Figures/Square.cpp \
Figures/Segment.cpp \
Figures/Rhombus.cpp \
Figures/Rectangle.cpp \
Figures/Ray.cpp \
Figures/Polygon.cpp \
Figures/Parallelogram.cpp \
Figures/Line.cpp \
Figures/Figure2D.cpp \
Figures/Ellipse.cpp \
Figures/Circle.cpp
HEADERS += editorwindow.h \
Figures/Figure.h \
renderscene.h \
Figures/Triangle.h \
Figures/Square.h \
Figures/Segment.h \
Figures/Rhombus.h \
Figures/Rectangle.h \
Figures/Ray.h \
Figures/Polygon.h \
Figures/Parallelogram.h \
Figures/Line.h \
Figures/Figure2D.h \
Figures/Ellipse.h \
Figures/Circle.h
FORMS += editorwindow.ui