Disabled Discord/Mapbase RPC by default

This commit is contained in:
Blixibon 2022-10-17 13:37:58 -05:00
parent c2d2df8c42
commit 2272b75772
3 changed files with 4 additions and 4 deletions

View File

@ -1260,6 +1260,9 @@ $Project
$Lib vtf $Lib vtf
$ImpLib steam_api $ImpLib steam_api
// Discord integration
$Lib "$LIBPUBLIC\discord-rpc" [$MAPBASE_RPC]
$Lib $LIBCOMMON/libcrypto [$POSIX] $Lib $LIBCOMMON/libcrypto [$POSIX]
$ImpLib "$LIBCOMMON\curl" [$OSXALL] $ImpLib "$LIBCOMMON\curl" [$OSXALL]

View File

@ -19,7 +19,7 @@
// Mapbase functionality conditionals // Mapbase functionality conditionals
$Conditional MAPBASE "1" // Equivalent to (and required for) our MAPBASE preprocessor defined below $Conditional MAPBASE "1" // Equivalent to (and required for) our MAPBASE preprocessor defined below
$Conditional MAPBASE_RPC "1" // Toggles Mapbase's Rich Presence Client implementations $Conditional MAPBASE_RPC "0" // Toggles Mapbase's Rich Presence Client implementations (requires discord-rpc.dll in game bin)
$Conditional MAPBASE_VSCRIPT "1" // Toggles VScript implementation (note: interfaces still exist, just the provided implementation is not present) $Conditional MAPBASE_VSCRIPT "1" // Toggles VScript implementation (note: interfaces still exist, just the provided implementation is not present)
$Conditional NEW_RESPONSE_SYSTEM "1" // Toggles the new Response System library based on the Alien Swarm SDK $Conditional NEW_RESPONSE_SYSTEM "1" // Toggles the new Response System library based on the Alien Swarm SDK

View File

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