forked from SwagSoftware/Kisak-Strike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatchmaking_base_inc.vpc
149 lines (134 loc) · 3.71 KB
/
matchmaking_base_inc.vpc
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
//-----------------------------------------------------------------------------
// matchmaking_base_inc.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR ".."
$Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE,..\common,$SRCDIR\gcsdk\steamextra,$SRCDIR\game\shared,$SRCDIR\thirdparty\protobuf-2.5.0\src"
$PreprocessorDefinitions "$BASE;NO_STRING_T;VECTOR;VERSION_SAFE_STEAM_API_INTERFACES;PROTECTED_THINGS_ENABLE;NO_STEAM_GAMECOORDINATOR"
$PreprocessorDefinitions "$BASE;strncpy=use_Q_strncpy_instead;_snprintf=use_Q_snprintf_instead" [!$PS3]
}
}
$Project
{
$Folder "Matchmaking"
{
$Folder "Headers"
{
$File "matchmakingqos.h"
$File "mm_framework.h"
$File "mm_netmsgcontroller.h"
$File "mm_events.h"
$File "mm_extensions.h"
$File "mm_session.h"
$File "mm_title_main.h"
$File "mm_voice.h"
}
$File "matchmakingqos.cpp"
$File "mm_events.cpp"
$File "mm_extensions.cpp"
$File "mm_framework.cpp"
$File "mm_netmsgcontroller.cpp"
$File "mm_session.cpp"
$File "mm_voice.cpp"
}
$Folder "Sessions"
{
$File "ds_searcher.h"
$File "ds_searcher.cpp"
$File "match_searcher.h"
$File "match_searcher.cpp"
$File "mm_netmgr.h"
$File "mm_netmgr.cpp"
$File "mm_session_offline_custom.h"
$File "mm_session_offline_custom.cpp"
$File "mm_session_online_client.h"
$File "mm_session_online_client.cpp"
$File "mm_session_online_host.h"
$File "mm_session_online_host.cpp"
$File "mm_session_online_search.h"
$File "mm_session_online_search.cpp"
$File "mm_session_online_teamsearch.h"
$File "mm_session_online_teamsearch.cpp"
$File "sys_session.h"
$File "sys_session.cpp"
}
$Folder "Platform - Steam"
{
$File "steam_apihook.cpp"
$File "steam_apihook.h"
$File "steam_datacenterjobs.h"
$File "steam_datacenterjobs.cpp" [!$X360]
$File "steam_lobbyapi.cpp" [!$NO_STEAM && !$DEDICATED && !$X360]
$File "steam_lobbyapi.h"
}
$Folder "Platform - Xbox 360"
{
$File "x360_lobbyapi.cpp" [$X360]
$File "x360_lobbyapi.h"
$File "x360_netmgr.cpp" [$X360]
$File "x360_netmgr.h"
$File "x360_xlsp_cmd.cpp"
$File "x360_xlsp_cmd.h"
}
$Folder "Systems"
{
$Folder "Headers"
{
$File "datacenter.h"
$File "leaderboards.h"
$File "matchsystem.h"
$File "mm_dlc.h"
$File "player.h"
$File "playermanager.h"
$File "searchmanager.h"
$File "servermanager.h"
$File "playerrankingdata.h"
}
$File "datacenter.cpp"
$File "mm_dlc.cpp"
$File "leaderboards.cpp"
$File "matchsystem.cpp"
$File "player.cpp"
$File "playermanager.cpp"
$File "searchmanager.cpp"
$File "servermanager.cpp"
$File "playerrankingdata.cpp"
}
$Folder "Utils"
{
$File "extkeyvalues.h"
$File "extkeyvalues.cpp"
}
$Folder "Public Headers"
{
$File "$SRCDIR\public\matchmaking\idatacenter.h"
$File "$SRCDIR\public\matchmaking\imatchasync.h"
$File "$SRCDIR\public\matchmaking\imatchextensions.h"
$File "$SRCDIR\public\matchmaking\imatchevents.h"
$File "$SRCDIR\public\matchmaking\imatchframework.h"
$File "$SRCDIR\public\matchmaking\imatchtitle.h"
$File "$SRCDIR\public\matchmaking\imatchnetworkmsg.h"
$File "$SRCDIR\public\matchmaking\imatchsystem.h"
$File "$SRCDIR\public\matchmaking\imatchvoice.h"
$File "$SRCDIR\public\matchmaking\iplayer.h"
$File "$SRCDIR\public\matchmaking\iplayermanager.h"
$File "$SRCDIR\public\matchmaking\isearchmanager.h"
$File "$SRCDIR\public\matchmaking\iservermanager.h"
$File "$SRCDIR\public\matchmaking\iplayerrankingdata.h"
}
$Folder "Source Files"
{
$File "$SRCDIR\public\filesystem_helpers.cpp"
$File "main.cpp"
}
$Folder "Link Libraries"
{
$Lib gcsdk [!$X360 && !$PS3]
}
}