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
|
executable('client',
[
'Alias.m',
'Client.mm',
'Command.mm',
'ConsoleLine.m',
'Cube.mm',
'DynamicEntity.mm',
'Entity.m',
'Identifier.m',
'KeyMapping.m',
'MD2.mm',
'MapModelInfo.m',
'Menu.m',
'MenuItem.m',
'OFString+Cube.mm',
'PersistentEntity.m',
'Projectile.m',
'ResolverResult.mm',
'ResolverThread.mm',
'ServerEntity.m',
'ServerInfo.mm',
'Variable.mm',
'clients.mm',
'clientextras.mm',
'clientgame.mm',
'clients2c.mm',
'commands.mm',
'console.mm',
'editing.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
29
30
|
executable('client',
[
'Alias.m',
'Client.m',
'Command.m',
'ConsoleLine.m',
'Cube.mm',
'DynamicEntity.m',
'Entity.m',
'Identifier.m',
'KeyMapping.m',
'MD2.m',
'MapModelInfo.m',
'Menu.m',
'MenuItem.m',
'OFString+Cube.m',
'PersistentEntity.m',
'Projectile.m',
'ResolverResult.m',
'ResolverThread.m',
'ServerEntity.m',
'ServerInfo.m',
'Variable.m',
'clients.mm',
'clientextras.mm',
'clientgame.mm',
'clients2c.mm',
'commands.mm',
'console.mm',
'editing.mm',
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
include_directories: [enet_includes],
link_args: client_link_args,
link_with: [enet],
win_subsystem: 'windows')
executable('server',
[
'Client.mm',
'ServerEntity.m',
'server.mm',
'serverms.mm',
'serverutil.mm',
'tools.mm',
],
objcpp_args: ['-DSTANDALONE'],
|
|
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
include_directories: [enet_includes],
link_args: client_link_args,
link_with: [enet],
win_subsystem: 'windows')
executable('server',
[
'Client.m',
'ServerEntity.m',
'server.mm',
'serverms.mm',
'serverutil.mm',
'tools.mm',
],
objcpp_args: ['-DSTANDALONE'],
|