mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
41 lines
958 B
Plaintext
41 lines
958 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// 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"
|
|
}
|
|
}
|