From 362a0578e6ddd75d5503177b8d1caacca209d78b Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Tue, 16 Sep 2025 16:26:13 -0400 Subject: [PATCH] Update Makefile --- libs/audio/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/audio/Makefile b/libs/audio/Makefile index dd99794..db9d895 100644 --- a/libs/audio/Makefile +++ b/libs/audio/Makefile @@ -53,12 +53,12 @@ ifneq (,$(findstring MINGW,$(UNAME_S))) ifneq (,$(wildcard /mingw64/lib/libFLAC.a)) CORE_LIBS += /mingw64/lib/libFLAC.a endif + ifneq (,$(wildcard /mingw64/lib/libogg.a)) + CORE_LIBS += /mingw64/lib/libogg.a + endif ifneq (,$(wildcard /mingw64/lib/libvorbisenc.a)) CORE_LIBS += /mingw64/lib/libvorbisenc.a /mingw64/lib/libvorbisfile.a /mingw64/lib/libvorbis.a endif - ifneq (,$(wildstring /mingw64/lib/libogg.a)) - CORE_LIBS += /mingw64/lib/libogg.a - endif ifneq (,$(wildcard /mingw64/lib/libspeex.a)) CORE_LIBS += /mingw64/lib/libspeex.a endif