summaryrefslogtreecommitdiff
path: root/devtools/processgamestats/processgamestats.vpc
blob: 8b8d1843e7ec43a3b7f53725112abaad0dcae1e0 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//-----------------------------------------------------------------------------
//	PROCESSGAMESTATS.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

$Macro SRCDIR		"..\.."
$Macro OUTBINDIR	"$SRCDIR\..\game\bin"

$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"

$Configuration
{
	$Compiler
	{
		$AdditionalIncludeDirectories		"$BASE;$SRCDIR\utils\vmpi;$SRCDIR\game\shared;$SRCDIR\game\server;$SRCDIR\game\shared\tf;$SRCDIR\game\shared\econ;$SRCDIR\gcsdk\steamextra"
		$EnableC++Exceptions				"Yes (/EHsc)"
		$PreprocessorDefinitions		"$BASE;GAME_DLL;TF_DLL;NO_STEAM"
	}
}

$Project "Processgamestats"
{
	$Folder	"Source Files"
	{
		$File	"$SRCDIR\public\filesystem_helpers.cpp"
		$File	"$SRCDIR\public\filesystem_helpers.h"
		$File	"$SRCDIR\game\server\GameStats_BasicStatsFunctions.cpp"
		$File	"processgamestats.cpp"

		$Folder	"Custom Stats"
		{
			$File	"base_gamestats_parse.h"
			$File	"cs_gamestats.h"
			$File	"cstrike_gamestats_parse.cpp"
			$File	"$SRCDIR\game\server\episodic\ep2_gamestats.h"
			$File	"ep2_gamestats_parse.cpp"
			$File	"$SRCDIR\game\server\tf\tf_gamestats.h"
			$File	"tf_gamestats_parse.cpp"
			$File	"$SRCDIR\game\shared\tf\tf_gamestats_shared.cpp"
			$File	"$SRCDIR\game\shared\tf\tf_gamestats_shared.h"
		}
	}

	$Folder	"Header Files"
	{
		$File	"$SRCDIR\public\tier0\basetypes.h"
		$File	"$SRCDIR\public\tier0\commonmacros.h"
		$File	"$SRCDIR\public\tier0\dbg.h"
		$File	"$SRCDIR\public\tier0\fasttimer.h"
		$File	"$SRCDIR\game\shared\gamestats.h"
		$File	"$SRCDIR\public\tier0\icommandline.h"
		$File	"$SRCDIR\utils\vmpi\imysqlwrapper.h"
		$File	"$SRCDIR\public\tier0\memdbgoff.h"
		$File	"$SRCDIR\public\tier0\memdbgon.h"
		$File	"$SRCDIR\public\tier0\platform.h"
		$File	"$SRCDIR\public\tier0\protected_things.h"
		$File	"$SRCDIR\public\string_t.h"
		$File	"$SRCDIR\public\tier1\strtools.h"
		$File	"$SRCDIR\public\tier1\utlmemory.h"
		$File	"$SRCDIR\public\tier1\utlvector.h"
		$File	"$SRCDIR\public\vstdlib\vstdlib.h"
	}

	$Folder	"Database Setup"
	{
		$File	"cstrike_gamestats.db"
		$File	"portal_gamestats.db"
		$File	"ep1_gamestats.db"
		$File	"ep2_gamestats.db"
		$File	"tf_gamestats.db"
	}

	$Folder	"Link Libraries"
	{
		$Lib tier2
	}
}