csgo-2018-source/matchmaking/matchmaking_episodic.vpc

49 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2021-07-25 12:11:47 +08:00
//-----------------------------------------------------------------------------
// matchmaking_episodic.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro OUTBINNAME "matchmaking"
$Include "matchmaking_episodic_inc.vpc"
$Configuration
{
$Compiler
{
$PreprocessorDefinitions "$BASE;MATCHMAKING_DLL"
}
}
$Configuration "Debug"
{
$General
{
$OutputDirectory ".\Debug_$GAMENAME" [$WIN32||$POSIX]
$IntermediateDirectory ".\Debug_$GAMENAME" [$WIN32||$POSIX]
$OutputDirectory ".\Debug_$GAMENAME_360" [$X360]
$IntermediateDirectory ".\Debug_$GAMENAME_360" [$X360]
}
}
$Configuration "Release"
{
$General
{
$OutputDirectory ".\Release_$GAMENAME" [$WIN32||$POSIX]
$IntermediateDirectory ".\Release_$GAMENAME" [$WIN32||$POSIX]
$OutputDirectory ".\Release_$GAMENAME_360" [$X360]
$IntermediateDirectory ".\Release_$GAMENAME_360" [$X360]
}
}
$Project "Matchmaking (episodic)"
{
$Folder "Link Libraries"
{
$Lib matchmakingbase
}
}