mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
41 lines
919 B
Plaintext
41 lines
919 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// FGDLIB.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR ".."
|
|
$Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$BASE,$SRCDIR\utils\common"
|
|
}
|
|
}
|
|
|
|
$Project "Fgdlib"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "gamedata.cpp"
|
|
$File "gdclass.cpp"
|
|
$File "gdvar.cpp"
|
|
$File "inputoutput.cpp"
|
|
$File "wckeyvalues.cpp"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
$File "$SRCDIR\public\fgdlib\fgdlib.h"
|
|
$File "$SRCDIR\public\fgdlib\gamedata.h"
|
|
$File "$SRCDIR\public\fgdlib\gdclass.h"
|
|
$File "$SRCDIR\public\fgdlib\gdvar.h"
|
|
$File "$SRCDIR\public\fgdlib\helperinfo.h"
|
|
$File "$SRCDIR\public\fgdlib\ieditortexture.h"
|
|
$File "$SRCDIR\public\fgdlib\inputoutput.h"
|
|
$File "$SRCDIR\public\fgdlib\wckeyvalues.h"
|
|
}
|
|
}
|