blob: a417fd7b374cfa24b779993bf898a134a540f312 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
//-----------------------------------------------------------------------------
// QC_EYES.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR "..\.."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_exe_base.vpc"
$Configuration
{
$Compiler
{
// Deprecated MBCS MFC libraries for VS 2013 (nafxcw.lib and nafxcwd.lib) can be downloaded from http://go.microsoft.com/?linkid=9832071
$PreprocessorDefinitions "$BASE;NO_WARN_MBCS_MFC_DEPRECATION"
$Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
$PrecompiledHeaderFile "Debug/QC_Eyes.pch"
$EnableC++Exceptions "Yes (/EHsc)"
}
$Linker
{
$AdditionalDependencies "$BASE;windowscodecs.lib"
}
}
$Project "QC_Eyes"
{
$Folder "Source Files"
{
-$File "$SRCDIR\public\tier0\memoverride.cpp"
$File "QC_Eyes.cpp"
$File "QC_Eyes.rc"
$File "QC_EyesDlg.cpp"
$File "StdAfx.cpp"
{
$Configuration
{
$Compiler
{
$Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
}
}
}
}
$Folder "Header Files"
{
$File "QC_Eyes.h"
$File "QC_EyesDlg.h"
$File "Resource.h"
$File "StdAfx.h"
}
$Folder "Resources"
{
$File "res\eye_default.bmp"
$File "res\eye_lower_hi.bmp"
$File "res\eye_lower_lo.bmp"
$File "res\eye_lower_mid.bmp"
$File "res\eye_upper_hi.bmp"
$File "res\eye_upper_lo.bmp"
$File "res\eye_upper_mid.bmp"
$File "res\eye_XY_L.bmp"
$File "res\eye_XY_R.bmp"
$File "res\eye_Z_L.bmp"
$File "res\eye_Z_R.bmp"
$File "res\QC_Eyes.ico"
$File "res\QC_Eyes.rc2"
}
}
|