forked from zhipeng-jia/project-lemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lemon.pro
147 lines (135 loc) · 4.25 KB
/
lemon.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#
# Project Lemon - A tiny judging environment for OI contest
# Copyright (C) 2011 Zhipeng Jia
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
QT += core gui network
TARGET = lemon
TEMPLATE = app
SOURCES += main.cpp \
lemon.cpp \
contest.cpp \
task.cpp \
testcase.cpp \
settings.cpp \
compiler.cpp \
filelineedit.cpp \
summarytree.cpp \
taskeditwidget.cpp \
testcaseeditwidget.cpp \
generalsettings.cpp \
compilersettings.cpp \
addtestcaseswizard.cpp \
contestant.cpp \
judgingdialog.cpp \
judgingthread.cpp \
optionsdialog.cpp \
resultviewer.cpp \
assignmentthread.cpp \
detaildialog.cpp \
newcontestwidget.cpp \
opencontestwidget.cpp \
newcontestdialog.cpp \
opencontestdialog.cpp \
welcomedialog.cpp \
addtaskdialog.cpp \
qtlockedfile/qtlockedfile.cpp \
qtsingleapplication/qtsinglecoreapplication.cpp \
qtsingleapplication/qtsingleapplication.cpp \
qtsingleapplication/qtlocalpeer.cpp \
advancedcompilersettingsdialog.cpp \
environmentvariablesdialog.cpp \
editvariabledialog.cpp \
addcompilerwizard.cpp
win32:SOURCES += qtlockedfile/qtlockedfile_win.cpp
unix:SOURCES += qtlockedfile/qtlockedfile_unix.cpp
HEADERS += lemon.h \
contest.h \
task.h \
testcase.h \
settings.h \
compiler.h \
filelineedit.h \
summarytree.h \
taskeditwidget.h \
testcaseeditwidget.h \
generalsettings.h \
compilersettings.h \
addtestcaseswizard.h \
contestant.h \
judgingdialog.h \
judgingthread.h \
optionsdialog.h \
resultviewer.h \
assignmentthread.h \
globaltype.h \
detaildialog.h \
newcontestwidget.h \
opencontestwidget.h \
newcontestdialog.h \
opencontestdialog.h \
welcomedialog.h \
addtaskdialog.h \
qtlockedfile/qtlockedfile.h \
qtsingleapplication/qtsinglecoreapplication.h \
qtsingleapplication/qtsingleapplication.h \
qtsingleapplication/qtlocalpeer.h \
advancedcompilersettingsdialog.h \
environmentvariablesdialog.h \
editvariabledialog.h \
addcompilerwizard.h
win32:FORMS += forms_win32/lemon.ui \
forms_win32/taskeditwidget.ui \
forms_win32/testcaseeditwidget.ui \
forms_win32/generalsettings.ui \
forms_win32/compilersettings.ui \
forms_win32/addtestcaseswizard.ui \
forms_win32/judgingdialog.ui \
forms_win32/optionsdialog.ui \
forms_win32/detaildialog.ui \
forms_win32/newcontestwidget.ui \
forms_win32/opencontestwidget.ui \
forms_win32/newcontestdialog.ui \
forms_win32/opencontestdialog.ui \
forms_win32/welcomedialog.ui \
forms_win32/addtaskdialog.ui \
forms_win32/advancedcompilersettingsdialog.ui \
forms_win32/environmentvariablesdialog.ui \
forms_win32/editvariabledialog.ui \
forms_win32/addcompilerwizard.ui
unix:FORMS += forms_unix/lemon.ui \
forms_unix/taskeditwidget.ui \
forms_unix/testcaseeditwidget.ui \
forms_unix/generalsettings.ui \
forms_unix/compilersettings.ui \
forms_unix/addtestcaseswizard.ui \
forms_unix/judgingdialog.ui \
forms_unix/optionsdialog.ui \
forms_unix/detaildialog.ui \
forms_unix/newcontestwidget.ui \
forms_unix/opencontestwidget.ui \
forms_unix/newcontestdialog.ui \
forms_unix/opencontestdialog.ui \
forms_unix/welcomedialog.ui \
forms_unix/addtaskdialog.ui \
forms_unix/advancedcompilersettingsdialog.ui \
forms_unix/environmentvariablesdialog.ui \
forms_unix/editvariabledialog.ui \
forms_unix/addcompilerwizard.ui
TRANSLATIONS += lemon_zh_CN.ts
win32:RC_FILE = lemon.rc
win32:LIBS += -lpsapi
win32:CONFIG += qaxcontainer
RESOURCES += resource.qrc