blob: 6050e0555468e97af7744f46734f30e3bef96fa4 (
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
|
//-----------------------------------------------------------------------------
// RPT.VPC [Remote Perf Testing]
//
// This project is used to copy files onto the customer machine to run
// specific tests. It also launches steam in a special way to make it
// not blow away those files.
//
// Project Script
//-----------------------------------------------------------------------------
$MacroRequired "PLATSUBDIR"
$Macro SRCDIR "..\.."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
$Project
{
$Folder "Source Files"
{
-$File "$SRCDIR\public\tier0\memoverride.cpp"
}
$Folder "Link Libraries"
{
-$File "$SRCDIR\lib\public\tier0.lib" [!$WIN64]
-$File "$SRCDIR\lib\public\tier1.lib" [!$WIN64]
-$File "$SRCDIR\lib\public\vstdlib.lib" [!$WIN64]
-$File "$SRCDIR\lib\public$PLATSUBDIR\tier0.lib" [$WIN64]
-$File "$SRCDIR\lib\public$PLATSUBDIR\tier1.lib" [$WIN64]
-$File "$SRCDIR\lib\public$PLATSUBDIR\vstdlib.lib" [$WIN64]
}
}
$Project "rpt"
{
$Folder "Source Files"
{
$File "rpt.cpp"
}
$Folder "Link Libraries"
{
}
}
|