1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
executable('client',
[
'Alias.m',
'Command.mm',
'Cube.mm',
'DynamicEntity.mm',
'Identifier.m',
'KeyMapping.m',
'MD2.mm',
'MapModelInfo.m',
'Menu.m',
'MenuItem.m',
'OFString+Cube.mm',
'Projectile.m',
'ServerInfo.mm',
'Variable.mm',
'client.mm',
'clientextras.mm',
'clientgame.mm',
'clients2c.mm',
'commands.mm',
'console.mm',
'editing.mm',
'entities.mm',
|
>
>
>
>
|
|
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
|
executable('client',
[
'Alias.m',
'Client.mm',
'Command.mm',
'ConsoleLine.m',
'Cube.mm',
'DynamicEntity.mm',
'Identifier.m',
'KeyMapping.m',
'MD2.mm',
'MapModelInfo.m',
'Menu.m',
'MenuItem.m',
'OFString+Cube.mm',
'Projectile.m',
'ResolverResult.mm',
'ResolverThread.mm',
'ServerInfo.mm',
'Variable.mm',
'clients.mm',
'clientextras.mm',
'clientgame.mm',
'clients2c.mm',
'commands.mm',
'console.mm',
'editing.mm',
'entities.mm',
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
include_directories: [enet_includes],
link_args: client_link_args,
link_with: [enet],
win_subsystem: 'windows')
executable('server',
[
'server.mm',
'serverms.mm',
'serverutil.mm',
'tools.mm',
],
objcpp_args: ['-DSTANDALONE'],
dependencies: [
|
>
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
include_directories: [enet_includes],
link_args: client_link_args,
link_with: [enet],
win_subsystem: 'windows')
executable('server',
[
'Client.mm',
'server.mm',
'serverms.mm',
'serverutil.mm',
'tools.mm',
],
objcpp_args: ['-DSTANDALONE'],
dependencies: [
|