blob: d3972951b2f5fd54081d2f4f04f521502d569a8b (
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
|
//-----------------------------------------------------------------------------
// SCENEFILECACHE.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR ".."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
$Configuration
{
$Linker
{
$SystemLibraries "iconv" [$OSXALL]
}
$Compiler
{
$AdditionalIncludeDirectories ".\;$BASE;$SRCDIR\game\shared"
$PreprocessorDefinitions "$BASE;_WINDOWS;PROTECTED_THINGS_ENABLE"
}
}
$Project "SceneFileCache"
{
$Folder "Source Files"
{
$File "SceneFileCache.cpp"
}
$Folder "Public Header Files"
{
$File "$SRCDIR\public\appframework\IAppSystem.h"
$File "$SRCDIR\public\tier1\interface.h"
$File "$SRCDIR\public\scenefilecache\ISceneFileCache.h"
$File "$SRCDIR\public\tier1\utlbuffer.h"
$File "$SRCDIR\public\vstdlib\vstdlib.h"
}
}
|