blob: d6379a6d409f6509cbaaf5d9baaff5dbcd54e71b (
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
|
//-----------------------------------------------------------------------------
// HEIGHT2NORMAL.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR "..\.."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE,..\common"
$PreprocessorDefinitions "_HAS_ITERATOR_DEBUGGING=0;_DEBUG;_WIN32;_CONSOLE"
}
}
$Project "Height2normal"
{
$Folder "Source Files"
{
-$File "$SRCDIR\public\tier0\memoverride.cpp"
$File "height2normal.cpp"
}
$Folder "Header Files"
{
$File "$SRCDIR\public\tier1\interface.h"
$File "$SRCDIR\public\tier1\utlbuffer.h"
}
$Folder "Link Libraries"
{
$DynamicFile "$SRCDIR\lib\public\bitmap.lib"
$DynamicFile "$SRCDIR\lib\public\mathlib.lib"
$DynamicFile "$SRCDIR\lib\public\tier2.lib"
}
}
|