summaryrefslogtreecommitdiff
path: root/unittests/tier3test/tier3test.vpc
blob: 8cd6d625a51273e0077962dd4ba288fe72ae531a (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
//-----------------------------------------------------------------------------
//	TIER3TEST.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

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

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

$Configuration
{
	$Compiler
	{
		$PreprocessorDefinitions			"$BASE;TIER3TEST_EXPORTS"
	}
}

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

	$Folder	"Header Files"
	{
		$File	"$SRCDIR\public\movieobjects\dmx_to_vcd.h"
		$File	"$SRCDIR\public\interpolatortypes.h"
	}

	$Folder "Link Libraries"
	{
		$Lib mathlib
		$Lib unitlib
		$Lib bitmap
		$Lib tier2
		$Lib tier3
	}
}