summaryrefslogtreecommitdiff
path: root/utils/vproject/vproject.vpc
blob: 6b4eb60a5ea97e4b6ae38f290b745d0571147b8f (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
//-----------------------------------------------------------------------------
//	VPROJECT.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

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

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

$Project "VProject"
{
	$Folder	"Source Files"
	{
		$File	"vproject.cpp"
		$File	"sys_utils.cpp"
		-$File	"memoverride.cpp"
	}

	$Folder	"Header Files"
	{
		$File	"sys_utils.h"
		$File	"vproject.h"		
	}

	$Folder "Resources"
	{
		$File	"vproject.rc"
		$File	"vproject.ico"
	}

	$Folder "Link Libraries"
	{
		-$File	"tier0"
		-$File	"tier1"
		-$File	"vstdlib"
	}
}