mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
30 lines
660 B
Plaintext
30 lines
660 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// TIER3.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$macro SRCDIR ".."
|
|
|
|
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
|
|
|
|
$Project "tier3"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "tier3.cpp"
|
|
$File "mdlutils.cpp"
|
|
$File "choreoutils.cpp"
|
|
$File "scenetokenprocessor.cpp"
|
|
$File "studiohdrstub.cpp"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
$File "$SRCDIR\public\tier3\tier3.h"
|
|
$File "$SRCDIR\public\tier3\mdlutils.h"
|
|
$File "$SRCDIR\public\tier3\choreoutils.h"
|
|
$File "$SRCDIR\public\tier3\scenetokenprocessor.h"
|
|
}
|
|
}
|