From 7d12dc8d162aea899286878f30665e59b6d179c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sun, 3 Mar 2024 12:37:04 +0100 Subject: [PATCH] Enable mupen64plus on all platforms (#528) --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 49841148..2936157f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ifeq ($(OS), Linux) BUNDLENAME = $(APP)-$(OS)-$(DISPDRIVER)-$(ARCH)-$(VERSION) endif -CORES = atari800 bluemsx swanstation fbneo fceumm gambatte gearsystem genesis_plus_gx handy lutro mednafen_ngp mednafen_pce mednafen_pce_fast mednafen_pcfx mednafen_psx mednafen_saturn mednafen_supergrafx mednafen_vb mednafen_wswan mgba melonds np2kai o2em pcsx_rearmed picodrive pokemini prosystem snes9x stella2014 vecx virtualjaguar +CORES = atari800 bluemsx swanstation fbneo fceumm gambatte gearsystem genesis_plus_gx handy lutro mednafen_ngp mednafen_pce mednafen_pce_fast mednafen_pcfx mednafen_psx mednafen_saturn mednafen_supergrafx mednafen_vb mednafen_wswan mgba melonds mupen64plus_next np2kai o2em pcsx_rearmed picodrive pokemini prosystem snes9x stella2014 vecx virtualjaguar ifeq ($(ARCH), arm) CORES := $(filter-out swanstation,$(CORES)) @@ -25,10 +25,6 @@ ifeq ($(ARCH), arm64) CORES := $(filter-out np2kai,$(CORES)) endif -ifeq ($(OS), Windows) - CORES += mupen64plus_next -endif - DYLIBS = $(addprefix cores/, $(addsuffix _libretro.dylib,$(CORES))) DLLS = $(addprefix cores/, $(addsuffix _libretro.dll,$(CORES))) SOBJS = $(addprefix cores/, $(addsuffix _libretro.so,$(CORES)))