-
Notifications
You must be signed in to change notification settings - Fork 2
/
Robot.pro
80 lines (73 loc) · 1.45 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#Enabled the qt modules.
QT += core gui widgets
#Enabled c++ 11 syntax.
CONFIG += c++11
#Win32 configure.
win32
{
DISTFILES += \
win.rc
RC_FILE += win.rc
}
macx
{
ICON = icon.icns
}
TRANSLATIONS += res/Simplified_Chinese.ts \
res/Traditional_Chinese.ts \
res/English.ts \
res/Japanese.ts
SOURCES += \
main.cpp \
mainwindow.cpp \
ground.cpp \
robot.cpp \
panel.cpp \
menubar.cpp \
robotmanagement.cpp \
paneldock.cpp \
robotaddwidget.cpp \
generateground.cpp \
pointeditor.cpp \
groundpreviewer.cpp \
groundrealtimepreviewer.cpp \
groundglobal.cpp \
polygoneditor.cpp \
robotmanagewidget.cpp \
about.cpp \
gridwidget.cpp \
robotbase.cpp \
enemy.cpp \
enemyaddwidget.cpp \
enemymanagewidget.cpp \
enemymanagement.cpp \
languagemanager.cpp
HEADERS += \
mainwindow.h \
ground.h \
robot.h \
panel.h \
groundbase.h \
menubar.h \
robotmanagement.h \
paneldock.h \
robotaddwidget.h \
generateground.h \
generategroundbase.h \
pointeditor.h \
groundpreviewer.h \
groundrealtimepreviewer.h \
groundglobal.h \
polygoneditor.h \
robotmanagewidget.h \
about.h \
gridwidget.h \
robotbase.h \
mainpage.h \
enemy.h \
enemyaddwidget.h \
enemymanagewidget.h \
enemymanagement.h \
languagemanager.h
RESOURCES += \
res.qrc