This commit is contained in:
nephacks
2025-06-04 03:22:50 +02:00
parent f234f23848
commit f12416cffd
14243 changed files with 6446499 additions and 26 deletions

View File

@ -0,0 +1,55 @@
//-----------------------------------------------------------------------------
// matchmaking_cstrike15.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro OUTBINNAME "matchmaking"
$Include "matchmaking_cstrike15_inc.vpc"
$Configuration
{
$Compiler
{
$PreprocessorDefinitions "$BASE;MATCHMAKING_DLL"
}
}
$Configuration "Debug"
{
$General
{
$OutputDirectory ".\Debug_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
$IntermediateDirectory ".\Debug_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
$OutputDirectory ".\Debug_$GAMENAME_360" [$X360]
$IntermediateDirectory ".\Debug_$GAMENAME_360" [$X360]
$OutputDirectory ".\Debug_$GAMENAME_PS3" [$PS3]
$IntermediateDirectory ".\Debug_$GAMENAME_PS3" [$PS3]
}
}
$Configuration "Release"
{
$General
{
$OutputDirectory ".\Release_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
$IntermediateDirectory ".\Release_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
$OutputDirectory ".\Release_$GAMENAME_360" [$X360]
$IntermediateDirectory ".\Release_$GAMENAME_360" [$X360]
$OutputDirectory ".\Release_$GAMENAME_PS3" [$PS3]
$IntermediateDirectory ".\Release_$GAMENAME_PS3" [$PS3]
}
}
$Project "Matchmaking (CSGO)"
{
$Folder "Link Libraries"
{
$Lib matchmakingbase
}
}