Makefile.w32: silence lots of W202 warnings from new vulkan headers

This commit is contained in:
Ozkan Sezer 2022-09-15 11:23:50 +03:00
parent c49faabb6d
commit 2e24708af2

View File

@ -27,6 +27,8 @@ CFLAGS = -bt=nt -d0 -q -bm -5s -fp5 -fpi87 -sg -oeatxhn -ei
CFLAGS+= -wx CFLAGS+= -wx
# newer OpenWatcom versions enable W303 by default # newer OpenWatcom versions enable W303 by default
CFLAGS+= -wcd=303 CFLAGS+= -wcd=303
# new vulkan headers result in lots of W202 warnings
CFLAGS+= -wcd=202
# the include paths : # the include paths :
CFLAGS+= $(INCPATH) CFLAGS+= $(INCPATH)
CFLAGS_STATIC=$(CFLAGS) CFLAGS_STATIC=$(CFLAGS)