summaryrefslogtreecommitdiff
path: root/utils/dx_proxy/dx_proxy_base.vpc
blob: 4a6e19d51ea13607733f6311493df001b930336d (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
//
// dx_proxy_base.vpc
//
// Base script for generating dx_proxy.dll for different
// versions of Microsoft DirectX SDK
//

$MacroRequired "SRCDIR"
$MacroRequired "OUTBINDIR"
$MacroRequired "DX_SDK_VER"

$Macro OUTBINNAME	"dx_proxy"

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

$Configuration	"Debug"
{
	$General
	{
		$OutputDirectory			".\Debug_$DX_SDK_VER"
		$IntermediateDirectory		".\Debug_$DX_SDK_VER"
	}
	
	$Linker
	{
		$IgnoreSpecificLibrary		"libcp.lib; libcmt.lib;"
	}
}

$Configuration	"Release"
{
	$General
	{
		$OutputDirectory			".\Release_$DX_SDK_VER"
		$IntermediateDirectory		".\Release_$DX_SDK_VER"
	}
	
	$Linker
	{
		$IgnoreSpecificLibrary		"libcpd.lib libcmtd.lib;"
	}
}

$Configuration
{
	$General
	{
			$AdditionalProjectDependencies                  "$BASE;vstdlib;tier1;tier0"
	}

	$Compiler
	{
		$PreprocessorDefinitions	"$BASE;DX_PROXY_EXPORTS;$DX_SDK_VER"
		$EnableC++Exceptions		"Yes (/EHsc)"
	}
}

$Project "DX_Proxy ($DX_SDK_VER)"
{
	$Folder	"Source Files"
	{
		-$File	"$SRCDIR\public\tier0\memoverride.cpp"

		$File	"dx_proxy.cpp"
		$File	"filememcache.cpp"
	}

	$Folder	"Header Files"
	{
		$File	"$SRCDIR\common\dx_proxy\dx_proxy.h"
		$File	"dxincludeimpl.h"
		$File	"filememcache.h"
	}
}