Added 32-bit Discord library for Windows
This commit is contained in:
parent
28ad89d525
commit
32e97c0c92
|
@ -79,6 +79,7 @@ sm64config.txt
|
|||
!/assets/**/*custom*.bin
|
||||
!/assets/**/*custom*/**/*.bin
|
||||
!/lib/discordsdk/*.*
|
||||
!/lib/discordsdk/x86/*.*
|
||||
|
||||
# visual studio
|
||||
build-windows-visual-studio/.vs
|
||||
|
|
19
Makefile
19
Makefile
|
@ -118,6 +118,21 @@ ifneq ($(TARGET_BITS),0)
|
|||
BITS := -m$(TARGET_BITS)
|
||||
endif
|
||||
|
||||
# Determine default windows target bits
|
||||
|
||||
ifeq ($(WINDOWS_BUILD), 1)
|
||||
ifeq ($(TARGET_BITS), 0)
|
||||
CPU_TYPE := $(firstword $(subst -, ,$(shell $(CC) -dumpmachine)))
|
||||
ifeq ($(CPU_TYPE), x86_64)
|
||||
TARGET_BITS := 64
|
||||
else ifeq ($(CPU_TYPE), i686)
|
||||
TARGET_BITS := 32
|
||||
else ifeq ($(CPU_TYPE), mingw32)
|
||||
TARGET_BITS := 32
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# Release (version) flag defs
|
||||
|
||||
ifeq ($(VERSION),jp)
|
||||
|
@ -435,7 +450,11 @@ RPC_LIBS :=
|
|||
DISCORD_SDK_LIBS :=
|
||||
ifeq ($(DISCORD_SDK), 1)
|
||||
ifeq ($(WINDOWS_BUILD),1)
|
||||
ifeq ($(TARGET_BITS), 32)
|
||||
DISCORD_SDK_LIBS := lib/discordsdk/x86/discord_game_sdk.dll
|
||||
else
|
||||
DISCORD_SDK_LIBS := lib/discordsdk/discord_game_sdk.dll
|
||||
endif
|
||||
else ifeq ($(OSX_BUILD),1)
|
||||
# needs testing
|
||||
DISCORD_SDK_LIBS := lib/discordsdk/discord_game_sdk.dylib
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue