mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-01-03 05:48:54 +03:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
//-----------------------------------------------------------------------------
|
|
// SERVER_HL2MP.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro GAMENAME "mod"
|
|
|
|
$Include "$SRCDIR\game\server\server_base.vpc"
|
|
$Include "$SRCDIR\game\server\nav_mesh.vpc" [$SOURCESDK]
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$BASE;$SRCDIR\game\shared\sdk;sdk"
|
|
$PreprocessorDefinitions "$BASE;SDK"
|
|
}
|
|
}
|
|
|
|
$Project "Server (SDK)"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
|
|
$Folder "SDK"
|
|
{
|
|
$File "sdk\skeleton_client.cpp"
|
|
$File "sdk\skeleton_eventlog.cpp"
|
|
$File "sdk\skeleton_gameinterface.cpp"
|
|
$File "sdk\skeleton_playermove.cpp"
|
|
$File "$SRCDIR\game\shared\sdk\skeleton_gamemovement.cpp"
|
|
$File "$SRCDIR\game\shared\sdk\skeleton_gamerules.cpp"
|
|
$File "$SRCDIR\game\shared\sdk\skeleton_parsers.cpp"
|
|
$File "$SRCDIR\game\shared\sdk\skeleton_player.cpp"
|
|
$File "$SRCDIR\game\shared\sdk\skeleton_usermessages.cpp"
|
|
}
|
|
}
|
|
}
|