mirror of
https://github.com/libretro/RetroArch
synced 2025-02-18 18:40:06 +00:00
Add RGUI to Win32 build.
This commit is contained in:
parent
2e03a4b3ba
commit
bcef812291
12
Makefile.win
12
Makefile.win
@ -56,6 +56,7 @@ HAVE_NETPLAY = 1
|
|||||||
HAVE_STDIN_CMD = 1
|
HAVE_STDIN_CMD = 1
|
||||||
HAVE_THREADS = 1
|
HAVE_THREADS = 1
|
||||||
HAVE_SINC = 1
|
HAVE_SINC = 1
|
||||||
|
HAVE_RGUI = 1
|
||||||
DYNAMIC = 1
|
DYNAMIC = 1
|
||||||
|
|
||||||
ifeq ($(SLIM),)
|
ifeq ($(SLIM),)
|
||||||
@ -91,6 +92,11 @@ endif
|
|||||||
|
|
||||||
JLIBS =
|
JLIBS =
|
||||||
|
|
||||||
|
ifeq ($(HAVE_RGUI), 1)
|
||||||
|
DEFINES += -DHAVE_RGUI
|
||||||
|
OBJ += frontend/menu/rgui.o frontend/menu/utils/file_list.o frontend/menu/menu_settings.o
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(HAVE_SDL), 1)
|
ifeq ($(HAVE_SDL), 1)
|
||||||
OBJ += gfx/sdl_gfx.o gfx/context/sdl_ctx.o input/sdl_input.o input/sdl_joypad.o audio/sdl_audio.o
|
OBJ += gfx/sdl_gfx.o gfx/context/sdl_ctx.o input/sdl_input.o input/sdl_joypad.o audio/sdl_audio.o
|
||||||
JOBJ += input/sdl_joypad.o
|
JOBJ += input/sdl_joypad.o
|
||||||
@ -227,8 +233,8 @@ else
|
|||||||
LDCXXFLAGS += -s
|
LDCXXFLAGS += -s
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS += -Wall -Wno-unused-result -I.
|
CFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I.
|
||||||
CXXFLAGS += -Wall -Wno-unused-result -I. -std=c++0x -D__STDC_CONSTANT_MACROS
|
CXXFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I. -std=c++0x -D__STDC_CONSTANT_MACROS
|
||||||
ifeq ($(CXX_BUILD), 1)
|
ifeq ($(CXX_BUILD), 1)
|
||||||
CFLAGS += -std=c++0x -xc++ -D__STDC_CONSTANT_MACROS
|
CFLAGS += -std=c++0x -xc++ -D__STDC_CONSTANT_MACROS
|
||||||
else
|
else
|
||||||
@ -263,6 +269,8 @@ endif
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
|
rm -f frontend/menu/*.o
|
||||||
|
rm -f frontend/menu/utils/*.o
|
||||||
rm -f audio/*.o
|
rm -f audio/*.o
|
||||||
rm -f audio/xaudio-c/*.o
|
rm -f audio/xaudio-c/*.o
|
||||||
rm -f compat/*.o
|
rm -f compat/*.o
|
||||||
|
Loading…
x
Reference in New Issue
Block a user