blob: bd413e43a6b9e853422ec7491d1f438c1482db43 (
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
|
//-----------------------------------------------------------------------------
// VGUI_SURFACELIB.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$macro SRCDIR "..\.."
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Project "vgui_surfacelib"
{
$Folder "Source Files"
{
$File "BitmapFont.cpp"
$File "FontAmalgam.cpp"
$File "FontManager.cpp"
$File "FontEffects.cpp"
$File "FontEffects.h"
$File "Win32Font.cpp" [$WIN32 && !$X360]
$File "Win32Font_x360.cpp" [$X360]
$File "osxfont.cpp" [$OSXALL]
$File "linuxfont.cpp" [$LINUXALL]
}
$Folder "Public Header Files"
{
$File "$SRCDIR\public\tier0\basetypes.h"
$File "$SRCDIR\common\vgui_surfacelib\BitmapFont.h"
$File "$SRCDIR\common\vgui_surfacelib\FontAmalgam.h"
$File "$SRCDIR\common\vgui_surfacelib\FontManager.h"
$File "$SRCDIR\public\appframework\IAppSystem.h"
$File "$SRCDIR\public\tier1\interface.h"
$File "$SRCDIR\public\tier1\strtools.h"
$File "$SRCDIR\public\tier1\utlbuffer.h"
$File "$SRCDIR\public\tier1\utlmemory.h"
$File "$SRCDIR\public\tier1\utlvector.h"
$File "$SRCDIR\public\mathlib\vector2d.h"
$File "$SRCDIR\public\vstdlib\vstdlib.h"
$File "$SRCDIR\common\vgui_surfacelib\vguifont.h"
$File "$SRCDIR\common\vgui_surfacelib\Win32Font.h" [$WIN32]
$File "$SRCDIR\common\vgui_surfacelib\osxfont.h" [$OSXALL]
}
}
|