More win compile cleanup

This commit is contained in:
Eric Froemling 2021-06-03 17:30:05 -05:00
parent 93eb876e5f
commit cc16682637
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98
2 changed files with 13 additions and 6 deletions

View File

@ -496,13 +496,20 @@ 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
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=$* \
${MAKE} _windows-wsl-build
# These are 'intermediate' files and will get deleted implicitly by make
# if we don't do this.
# See: https://www.gnu.org/software/make/manual/make.html#Special-Targets
.PRECIOUS: \
ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.lib \
ballisticacore-windows/build/Debug_%/BallisticaCoreGenericInternal.pdb
# Tell make which of these targets don't represent files.
.PHONY: prefab-debug prefab-release prefab-debug-build prefab-release-build \
prefab-server-debug prefab-server-release prefab-server-debug-build \

View File

@ -76,9 +76,9 @@ class SourceCategory(Enum):
class PrefabTarget(Enum):
"""Types of prefab builds able to be run."""
DEBUG = 'gui-debug'
GUI_DEBUG = 'gui-debug'
SERVER_DEBUG = 'server-debug'
RELEASE = 'gui-release'
GUI_RELEASE = 'gui-release'
SERVER_RELEASE = 'server-release'