Fix Windows miniaudio build... again
This commit is contained in:
parent
9af25f7c67
commit
d57850d937
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -275,7 +275,11 @@ ifeq ($(BACKEND_AUDIO), SDL2)
|
|||
SOURCES += src/Backends/Audio/SDL2.cpp
|
||||
else ifeq ($(BACKEND_AUDIO), miniaudio)
|
||||
SOURCES += src/Backends/Audio/miniaudio.cpp external/miniaudio.c
|
||||
CSE2_LIBS += -ldl -lm -lpthread
|
||||
CSE2_LIBS += -lm -lpthread
|
||||
|
||||
ifneq ($(WINDOWS), 1)
|
||||
CSE2_LIBS += -ldl
|
||||
endif
|
||||
else
|
||||
$(error Invalid BACKEND_AUDIO selected)
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue