You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
919 B
41 lines
919 B
5 years ago
|
//-----------------------------------------------------------------------------
|
||
|
// 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"
|
||
|
}
|
||
|
}
|