summaryrefslogtreecommitdiff
path: root/soundsystem/soundsystem.vpc
blob: d502d87aa94b5a4f307280a0fa47b8ad624e4f78 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//-----------------------------------------------------------------------------
//	SOUNDSYSTEM.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

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

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

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

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

$Project "Soundsystem"
{
	$Folder	"Source Files"
	{
		$File	"$SRCDIR\public\sentence.cpp"
		$File	"snd_audio_source.cpp"
		$File	"snd_dev_wave.cpp"
		$File	"snd_io.cpp"
		$File	"snd_wave_mixer.cpp"
		$File	"snd_wave_mixer_adpcm.cpp"
		$File	"snd_wave_source.cpp"
		$File	"soundsystem.cpp"
	}

	$Folder	"Header Files"
	{
		$File	"snd_dev_wave.h"
		$File	"snd_wave_mixer.h"
		$File	"snd_wave_mixer_adpcm.h"
		$File	"snd_wave_mixer_private.h"
		$File	"snd_wave_source.h"
		$File	"soundsystem.h"
	}

	$Folder	"Interface"
	{
		$File	"$SRCDIR\public\soundsystem\isoundsystem.h"
		$File	"$SRCDIR\public\soundsystem\snd_audio_source.h"
		$File	"$SRCDIR\public\soundsystem\snd_device.h"
	}

	$Folder	"Link Libraries"
	{
		$Lib mathlib
		$Lib tier2
		$File	"$SRCDIR\dx9sdk\lib\dsound.lib"
		$File	"$SRCDIR\dx9sdk\lib\dxguid.lib"
		$File	"$SRCDIR\lib\common\mss32.lib"
	}
}