Initial Mapbase commit (squashed from mapbase-beta)

This commit is contained in:
Blixibon
2019-08-31 19:28:20 +00:00
parent 0d8dceea43
commit 3d464bc051
816 changed files with 105527 additions and 957 deletions

View File

@@ -15,6 +15,14 @@
// rel/tf_beta branch:
//$Conditional TF_BETA "1"
//-----------------------------------------------------------------------------
// Mapbase conditional, equivalent to (and required for) our MAPBASE preprocessor defined below
$Conditional MAPBASE "1"
// Toggles Mapbase's RPC implementation
$Conditional MAPBASE_RPC "1"
//-----------------------------------------------------------------------------
$Configuration "Debug"
{
$Compiler
@@ -27,6 +35,9 @@ $Configuration "Debug"
// Need to revisit the code to make things run with the _RETAIL preprocessor definition
// This line was added in the previous check-in, but had previously not been defined in this branch
// $PreprocessorDefinitions "$BASE;_RETAIL" [$RETAIL]
// Mapbase base definitions
$PreprocessorDefinitions "$BASE;MAPBASE" [$MAPBASE]
}
}
@@ -42,5 +53,8 @@ $Configuration "Release"
// Need to revisit the code to make things run with the _RETAIL preprocessor definition
// This line was added in the previous check-in, but had previously not been defined in this branch
// $PreprocessorDefinitions "$BASE;_RETAIL" [$RETAIL]
// Mapbase base definitions
$PreprocessorDefinitions "$BASE;MAPBASE" [$MAPBASE]
}
}

View File

@@ -138,6 +138,9 @@ $Project
$Implib "$LIBPUBLIC\tier0"
$Lib "$LIBPUBLIC\tier1"
$Implib "$LIBPUBLIC\vstdlib"
// Discord integration
$Lib "$LIBPUBLIC\discord-rpc" [$MAPBASE_RPC]
}
}