forked from Harinlen/Robot-Emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Robot.pro
39 lines (36 loc) · 759 Bytes
/
Robot.pro
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
#Enabled the qt modules.
QT += core gui widgets
#Enabled c++ 11 syntax.
CONFIG += c++11
SOURCES += \
main.cpp \
mainwindow.cpp \
ground.cpp \
robot.cpp \
panel.cpp \
menubar.cpp \
robotmanagement.cpp \
paneldock.cpp \
robotaddwidget.cpp \
groundpreviewwidget.cpp \
generateground.cpp \
groundeditor.cpp \
generategroundbase.cpp \
barrackseditor.cpp \
barrackseditorbase.cpp
HEADERS += \
mainwindow.h \
ground.h \
robot.h \
panel.h \
groundbase.h \
menubar.h \
robotmanagement.h \
paneldock.h \
robotaddwidget.h \
groundpreviewwidget.h \
generateground.h \
groundeditor.h \
generategroundbase.h \
barrackseditor.h \
barrackseditorbase.h