blob: 5146263b369d078e4f24b5a17613dd92810414c3 (
plain) (
blame)
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
|
//-----------------------------------------------------------------------------
// NETWORKSYSTEM.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR ".."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
$Configuration
{
$Compiler
{
$PreprocessorDefinitions "$BASE;NETWORKSYSTEM_EXPORTS"
}
$Linker
{
$AdditionalDependencies "$BASE winmm.lib ws2_32.lib"
}
}
$Project "Networksystem"
{
$Folder "Source Files"
{
$File "netchannel.cpp"
$File "netchannel.h"
$File "networkclient.cpp"
$File "networkclient.h"
$File "networkserver.cpp"
$File "networkserver.h"
$File "networksystem.cpp"
$File "networksystem.h"
$File "sm_protocol.h"
$File "udp_process.cpp"
$File "udp_process.h"
$File "udp_socket.cpp"
$File "udp_socket.h"
}
$Folder "Interface"
{
$File "$SRCDIR\common\networksystem\inetworkmessage.h"
$File "$SRCDIR\common\networksystem\inetworksystem.h"
}
$Folder "Link Libraries"
{
$Lib tier2
}
}
|