mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-04 23:46:35 +00:00
Libretro: Turn off -Wall for MSVC (to get rid of warning spam)
This commit is contained in:
parent
75c2776469
commit
dbab7b35d9
@ -248,8 +248,13 @@ include Makefile.common
|
||||
|
||||
OBJECTS := $(SOURCES_C:.c=.o) $(SOURCES_CXX:.cpp=.o)
|
||||
|
||||
CFLAGS += -Wall -D LIBRETRO $(fpic)
|
||||
CXXFLAGS += -Wall -D LIBRETRO $(fpic) -std=c++14
|
||||
ifeq (,$(findstring windows_msvc2017,$(platform)))
|
||||
CFLAGS += -Wall
|
||||
CXXFLAGS += -Wall
|
||||
endif
|
||||
|
||||
CFLAGS += -D LIBRETRO $(fpic)
|
||||
CXXFLAGS += -D LIBRETRO $(fpic) -std=c++14
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user