From 8d757e6fe1a67bb0fbd847092b5eec8cfb94daa1 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 3 Jun 2021 14:52:56 -0500 Subject: [PATCH] Including pdb for internal libs --- .efrocachemap | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.efrocachemap b/.efrocachemap index be8a535c..ffc0ab54 100644 --- a/.efrocachemap +++ b/.efrocachemap @@ -3934,6 +3934,7 @@ "assets/build/windows/Win32/vcruntime140d.dll": "https://files.ballistica.net/cache/ba1/50/8d/bc2600ac9491f1b14d659709451f", "ballisticacore-windows/Generic/BallisticaCore.ico": "https://files.ballistica.net/cache/ba1/89/c0/e32c7d2a35dc9aef57cc73b0911a", "ballisticacore-windows/build/Debug_Win32/BallisticaCoreGenericInternal.lib": "https://files.ballistica.net/cache/ba1/bb/ef/cbbb2871d6951c4178c51b9168ee", + "ballisticacore-windows/build/Debug_Win32/BallisticaCoreGenericInternal.pdb": "https://files.ballistica.net/cache/ba1/d4/4e/8f19b93f504faf01ab6110076482", "build/prefab/full/linux_arm64_gui/debug/ballisticacore": "https://files.ballistica.net/cache/ba1/e8/15/872df30172235c867eda63d89589", "build/prefab/full/linux_arm64_gui/release/ballisticacore": "https://files.ballistica.net/cache/ba1/74/1d/fc9e33e565475daaac80da5252f0", "build/prefab/full/linux_arm64_server/debug/dist/ballisticacore_headless": "https://files.ballistica.net/cache/ba1/78/4f/3c6279192f18688bd84bb6a4411b", diff --git a/Makefile b/Makefile index 2ff35fc4..3ff039e4 100644 --- a/Makefile +++ b/Makefile @@ -489,11 +489,15 @@ build/prefab/full/windows_x86_server/release/dist/BallisticaCoreHeadless.exe: .e ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.lib: .efrocachemap @tools/pcommand efrocache_get $@ +ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.pdb: .efrocachemap + @tools/pcommand efrocache_get $@ + ballisticacore-windows/Generic/BallisticaCore.ico: .efrocachemap @tools/pcommand efrocache_get $@ ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.exe: \ ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.lib \ + ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.pdb \ ballisticacore-windows/Generic/BallisticaCore.ico \ prereqs code resources WINDOWS_PROJECT=Generic WINDOWS_CONFIGURATION=Debug WINDOWS_PLATFORM=$* \