blob: 0ce693ab146effc29d8781e4b10391ee49d5f263 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-12-29T01:14:46
#
#-------------------------------------------------
QT += core gui multimedia network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Attorney_Online_remake
TEMPLATE = app
VERSION = 2.1.0.0
SOURCES += main.cpp\
lobby.cpp \
text_file_functions.cpp \
path_functions.cpp \
aoimage.cpp \
file_functions.cpp \
aobutton.cpp \
debug_functions.cpp \
networkmanager.cpp \
aoapplication.cpp \
aopacket.cpp \
packet_distribution.cpp \
hex_functions.cpp \
encryption_functions.cpp \
courtroom.cpp \
aocharbutton.cpp \
hardware_functions.cpp
HEADERS += lobby.h \
text_file_functions.h \
path_functions.h \
aoimage.h \
file_functions.h \
aobutton.h \
debug_functions.h \
networkmanager.h \
aoapplication.h \
datatypes.h \
aopacket.h \
hex_functions.h \
encryption_functions.h \
courtroom.h \
aocharbutton.h \
hardware_functions.h
|