summaryrefslogtreecommitdiff
path: root/unittests/testprocess/testprocess.vpc
blob: 44cc7469ce5b7869a1fe4abf6b9e902be0e56fc8 (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
//-----------------------------------------------------------------------------
//	TESTPROCESS.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

$MacroRequired "PLATSUBDIR"

$Macro SRCDIR		"..\.."
$Macro OUTBINDIR	"$SRCDIR\unittests\testprocess"

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

$Configuration	"Debug"
{
	$Compiler
	{
		$PreprocessorDefinitions			"$BASE;PROTECTED_THINGS_DISABLE"
	}

	$Linker
	{
		$AdditionalDependencies				"$BASE winmm.lib"
	}
}

$Project "Testprocess"
{
	$Folder	"Source Files"
	{
		$File	"testprocess.cpp"
	}

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