You've already forked RSDKv5-Decompilation
mirror of
https://github.com/izzy2lost/RSDKv5-Decompilation.git
synced 2026-03-26 16:42:45 -07:00
21f99e8c9c
Issue caused was the failure to build because PortAudio was not being linked at all.
36 lines
914 B
INI
36 lines
914 B
INI
STATIC = 0
|
|
RSDK_LIBS += -pthread
|
|
|
|
SUBSYSTEM ?= OGL
|
|
|
|
ifeq ($(SUBSYSTEM),OGL)
|
|
# VIDEO: GLFW
|
|
# INPUTS: Keyboard and GLFW
|
|
# AUDIO: SDL2
|
|
RSDK_LIBS += -lglfw
|
|
|
|
RSDK_CFLAGS += `$(PKGCONFIG) --cflags --static sdl2 glew`
|
|
RSDK_LIBS += `$(PKGCONFIG) --libs --static sdl2 glew`
|
|
endif
|
|
|
|
ifeq ($(SUBSYSTEM),VK)
|
|
# VIDEO: GLFW w/ VulkanRenderDevice
|
|
# INPUTS: Keyboard and GLFW
|
|
# AUDIO: SDL2
|
|
RSDK_LIBS += -lglfw
|
|
DEFINES += -DVULKAN_USE_GLFW
|
|
|
|
RSDK_CFLAGS += `$(PKGCONFIG) --cflags --static sdl2`
|
|
RSDK_LIBS += `$(PKGCONFIG) --libs --static sdl2 vulkan`
|
|
endif
|
|
|
|
ifeq ($(SUBSYSTEM),SDL2)
|
|
# EVERYTHING: SDL2
|
|
RSDK_CFLAGS += `$(PKGCONFIG) --cflags --static sdl2`
|
|
RSDK_LIBS += `$(PKGCONFIG) --libs --static sdl2`
|
|
endif
|
|
|
|
RSDK_CFLAGS += `$(PKGCONFIG) --cflags --static theora theoradec zlib portaudio`
|
|
RSDK_LIBS += `$(PKGCONFIG) --libs --static theora theoradec zlib portaudio`
|
|
|