-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.pri
131 lines (129 loc) · 3.45 KB
/
game.pri
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
# Files
HEADERS += \
$$PWD/about_view_item.h \
$$PWD/about_view_layout.h \
$$PWD/action_history.h \
$$PWD/action_number.h \
$$PWD/asserts.h \
$$PWD/board.h \
$$PWD/board_to_text_options.h \
$$PWD/castling_type.h \
$$PWD/ccfwd.h \
$$PWD/chess_color.h \
$$PWD/chess_move.h \
$$PWD/controls_view_item.h \
$$PWD/controls_view_layout.h \
$$PWD/delta_t.h \
$$PWD/fonts.h \
$$PWD/fps_clock.h \
$$PWD/game.h \
$$PWD/game_controller.h \
$$PWD/game_coordinat.h \
$$PWD/game_log.h \
$$PWD/game_options.h \
$$PWD/game_rect.h \
$$PWD/game_speed.h \
$$PWD/game_view_layout.h \
$$PWD/helper.h \
$$PWD/id.h \
$$PWD/key_bindings.h \
$$PWD/layout.h \
$$PWD/lobby_options.h \
$$PWD/lobby_view_item.h \
$$PWD/lobby_view_layout.h \
$$PWD/menu_view_item.h \
$$PWD/menu_view_layout.h \
$$PWD/message.h \
$$PWD/message_type.h \
$$PWD/options_view_item.h \
$$PWD/options_view_layout.h \
$$PWD/pgn_string.h \
$$PWD/physical_controller.h \
$$PWD/physical_controller_type.h \
$$PWD/physical_controllers.h \
$$PWD/piece.h \
$$PWD/piece_action.h \
$$PWD/piece_action_type.h \
$$PWD/piece_actions.h \
$$PWD/piece_type.h \
$$PWD/pieces.h \
$$PWD/played_game_view_layout.h \
$$PWD/race.h \
$$PWD/read_only.h \
$$PWD/replay.h \
$$PWD/replayer.h \
$$PWD/screen_coordinat.h \
$$PWD/screen_rect.h \
$$PWD/side.h \
$$PWD/songs.h \
$$PWD/square.h \
$$PWD/starting_position_type.h \
$$PWD/test_game.h \
$$PWD/user_input.h \
$$PWD/user_input_type.h \
$$PWD/user_inputs.h \
$$PWD/volume.h
SOURCES += \
$$PWD/about_view_item.cpp \
$$PWD/about_view_layout.cpp \
$$PWD/action_history.cpp \
$$PWD/action_number.cpp \
$$PWD/asserts.cpp \
$$PWD/board.cpp \
$$PWD/board_to_text_options.cpp \
$$PWD/castling_type.cpp \
$$PWD/chess_color.cpp \
$$PWD/chess_move.cpp \
$$PWD/controls_view_item.cpp \
$$PWD/controls_view_layout.cpp \
$$PWD/delta_t.cpp \
$$PWD/fonts.cpp \
$$PWD/fps_clock.cpp \
$$PWD/game.cpp \
$$PWD/game_controller.cpp \
$$PWD/game_coordinat.cpp \
$$PWD/game_log.cpp \
$$PWD/game_options.cpp \
$$PWD/game_rect.cpp \
$$PWD/game_speed.cpp \
$$PWD/game_view_layout.cpp \
$$PWD/helper.cpp \
$$PWD/id.cpp \
$$PWD/key_bindings.cpp \
$$PWD/layout.cpp \
$$PWD/lobby_options.cpp \
$$PWD/lobby_view_item.cpp \
$$PWD/lobby_view_layout.cpp \
$$PWD/menu_view_item.cpp \
$$PWD/menu_view_layout.cpp \
$$PWD/message.cpp \
$$PWD/message_type.cpp \
$$PWD/options_view_item.cpp \
$$PWD/options_view_layout.cpp \
$$PWD/pgn_string.cpp \
$$PWD/physical_controller.cpp \
$$PWD/physical_controller_type.cpp \
$$PWD/physical_controllers.cpp \
$$PWD/piece.cpp \
$$PWD/piece_action.cpp \
$$PWD/piece_action_type.cpp \
$$PWD/piece_actions.cpp \
$$PWD/piece_type.cpp \
$$PWD/pieces.cpp \
$$PWD/played_game_view_layout.cpp \
$$PWD/race.cpp \
$$PWD/read_only.cpp \
$$PWD/replay.cpp \
$$PWD/replayer.cpp \
$$PWD/screen_coordinat.cpp \
$$PWD/screen_rect.cpp \
$$PWD/side.cpp \
$$PWD/songs.cpp \
$$PWD/square.cpp \
$$PWD/starting_position_type.cpp \
$$PWD/test_game.cpp \
$$PWD/test_game_scenarios.cpp \
$$PWD/user_input.cpp \
$$PWD/user_input_type.cpp \
$$PWD/user_inputs.cpp \
$$PWD/volume.cpp