49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
|
//-----------------------------------------------------------------------------
|
||
|
// matchmaking_swarm_ds.VPC
|
||
|
//
|
||
|
// Project Script
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
$Macro OUTBINNAME "matchmaking_ds"
|
||
|
|
||
|
$Include "matchmaking_swarm_inc.vpc"
|
||
|
|
||
|
$Configuration
|
||
|
{
|
||
|
$Compiler
|
||
|
{
|
||
|
$PreprocessorDefinitions "$BASE;MATCHMAKING_DS_DLL;SWDS"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$Configuration "Debug"
|
||
|
{
|
||
|
$General
|
||
|
{
|
||
|
$OutputDirectory ".\Debug_$GAMENAME_DS" [$WIN32||$POSIX]
|
||
|
$IntermediateDirectory ".\Debug_$GAMENAME_DS" [$WIN32||$POSIX]
|
||
|
|
||
|
$OutputDirectory ".\Debug_$GAMENAME_DS_360" [$X360]
|
||
|
$IntermediateDirectory ".\Debug_$GAMENAME_DS_360" [$X360]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$Configuration "Release"
|
||
|
{
|
||
|
$General
|
||
|
{
|
||
|
$OutputDirectory ".\Release_$GAMENAME_DS" [$WIN32||$POSIX]
|
||
|
$IntermediateDirectory ".\Release_$GAMENAME_DS" [$WIN32||$POSIX]
|
||
|
|
||
|
$OutputDirectory ".\Release_$GAMENAME_DS_360" [$X360]
|
||
|
$IntermediateDirectory ".\Release_$GAMENAME_DS_360" [$X360]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$Project "Matchmaking_DS (Swarm)"
|
||
|
{
|
||
|
$Folder "Link Libraries"
|
||
|
{
|
||
|
$Lib matchmakingbase_ds
|
||
|
}
|
||
|
}
|