summaryrefslogtreecommitdiff
path: root/dmxloader/dmxloader.vpc
blob: d3972c3fd594d01d5ebd750799c9873d105ee2f7 (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
//-----------------------------------------------------------------------------
//	DMXLOADER.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

$Macro SRCDIR		".."

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

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

$Project "Dmxloader"
{
	$Folder	"Source Files"
	{
		$File	"dmxattribute.cpp"
		$File	"dmxelement.cpp"
		$File	"dmxloader.cpp"
		$File	"dmxloadertext.cpp"
		$File	"dmxserializationdictionary.cpp"
	}

	$Folder	"Header Files"
	{
		$File	"dmxserializationdictionary.h"
	}

	$Folder	"Interface"
	{
		$File	"$SRCDIR\public\dmxloader\dmxattribute.h"
		$File	"$SRCDIR\public\dmxloader\dmxelement.h"
		$File	"$SRCDIR\public\dmxloader\dmxloader.h"
	}
}