summaryrefslogtreecommitdiff
path: root/utils/bzip2/bzip2.vpc
blob: 698d60b6604440f32a8fba0acc3d7d0ad14ad4b3 (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
//-----------------------------------------------------------------------------
//	BZIP2.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

$Macro SRCDIR		"..\.."
$Macro OUTLIBDIR	"$LIBCOMMON"
$Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"

$Configuration
{
	$Compiler
	{
		$ForceIncludes						" "
		$CompileAs							"Compile as C Code (/TC)" [!$POSIX]
	}
}

$Project "Bzip2"
{
	$Folder	"Source Files"
	{
		$File	"blocksort.c"
		$File	"bzip2.c"
		$File	"bzlib.c"
		$File	"compress.c"
		$File	"crctable.c"
		$File	"decompress.c"
		$File	"huffman.c"
		$File	"randtable.c"
	}

	$Folder	"Header Files"
	{
		$File	"bzlib.h"
		$File	"bzlib_private.h"
	}
}