Skip to content

Commit

Permalink
Merge remote-tracking branch 'mapbase/master' into vscript-saverestore
Browse files Browse the repository at this point in the history
  • Loading branch information
samisalreadytaken committed Jan 16, 2024
2 parents af7c936 + 82bc30c commit 8c0b3f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/mapbase_build-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install GCC/G++ multilib
run: sudo apt-get install gcc-multilib g++-multilib
run: |
sudo apt-get update
sudo apt-get install gcc-multilib g++-multilib
- name: Pick game
if: inputs.project-group == 'game' || inputs.project-group == 'shaders'
Expand Down
2 changes: 1 addition & 1 deletion sp/src/game/client/client_base.vpc
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ $Project
$ImpLib steam_api

// Discord integration
$Lib "$LIBPUBLIC\discord-rpc" [$MAPBASE_RPC]
$Lib "$LIBPUBLIC\discord-rpc" [$MAPBASE_RPC&&!$LINUXALL]

$Lib $LIBCOMMON/libcrypto [$POSIX]

Expand Down
2 changes: 1 addition & 1 deletion sp/src/game/client/client_mapbase.vpc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $Configuration
{
$PreprocessorDefinitions "$BASE;ASW_PROJECTED_TEXTURES;DYNAMIC_RTT_SHADOWS;GLOWS_ENABLE"

$PreprocessorDefinitions "$BASE;MAPBASE_RPC;DISCORD_RPC;STEAM_RPC" [$MAPBASE_RPC]
$PreprocessorDefinitions "$BASE;MAPBASE_RPC;DISCORD_RPC;STEAM_RPC" [$MAPBASE_RPC&&!$LINUXALL]
$PreprocessorDefinitions "$BASE;MAPBASE_VSCRIPT" [$MAPBASE_VSCRIPT]
$PreprocessorDefinitions "$BASE;NEW_RESPONSE_SYSTEM" [$NEW_RESPONSE_SYSTEM]
}
Expand Down

0 comments on commit 8c0b3f2

Please sign in to comment.