blob: f2ef5a16485e43e0a1f276b43ff1478c39066d2d (
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
|
//-----------------------------------------------------------------------------
// CARDSTATS.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR "..\.."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
$Configuration
{
$PostBuildEvent
{
$CommandLine " "
$Description " "
}
}
$Project "Cardstats"
{
$Folder "Source Files"
{
$File "CardStats.cpp"
}
$Folder "Header Files"
{
$File "CardStats.h"
$File "$SRCDIR\public\tier1\utlbuffer.h"
$File "$SRCDIR\public\tier1\utlmemory.h"
$File "$SRCDIR\public\tier1\utlvector.h"
}
}
|