summaryrefslogtreecommitdiff
path: root/utils/mkentitypatch/mkentitypatch.vpc
blob: fe1a6af1db580dc7fc85035b272fb86fede8ea08 (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
//-----------------------------------------------------------------------------
//	MKENTITYPATCH.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

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

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

$Configuration
{
	$Compiler
	{
		$AdditionalIncludeDirectories		"$BASE,..\common"
		$PreprocessorDefinitions			"$BASE;DONT_PROTECT_FILEIO_FUNCTIONS"
	}
}

$Project "mkentitypatch"
{
	$Folder	"Source Files"
	{
		$File	"mkentitypatch.cpp"
	}

	$Folder "External"
	{
		$File	"$SRCDIR\utils\common\bsplib.cpp"
		$File	"$SRCDIR\utils\common\filesystem_tools.cpp"
		$File	"$SRCDIR\utils\common\scriplib.cpp"
		$File	"$SRCDIR\utils\common\cmdlib.cpp"
		$File	"$SRCDIR\public\filesystem_helpers.cpp"
		$File	"$SRCDIR\public\lumpfiles.cpp"
		$File	"$SRCDIR\public\zip_utils.cpp"
	}
	
	$Folder	"External Header Files"
	{
		$File	"$SRCDIR\utils\common\bsplib.h"
		$File	"$SRCDIR\public\lumpfiles.h"
		$File	"$SRCDIR\public\filesystem_helpers.h"
	}

	$Folder	"Link Libraries"
	{
		$Lib appframework
		$Lib mathlib
		$Lib tier2
		$Lib "$LIBCOMMON/lzma"
	}
}